gitlab-org--gitlab-foss/app/views/projects/_readme.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
1.2 KiB
Plaintext
Raw Normal View History

2017-10-18 10:17:08 +00:00
- if (readme = @repository.readme) && readme.rich_viewer
.tree-holder
.nav-block.mt-0
= render 'projects/tree/tree_header', tree: @tree
2017-10-16 20:21:51 +00:00
%article.file-holder.readme-holder{ id: 'readme', class: ("limited-width-container" unless fluid_layout) }
.js-file-title.file-title-flex-parent
.file-header-content
= blob_icon readme.mode, readme.name
= link_to project_blob_path(@project, tree_join(@ref, readme.path)) do
%strong
= readme.name
2017-10-18 10:17:08 +00:00
= render 'projects/blob/viewer', viewer: readme.rich_viewer, viewer_url: namespace_project_blob_path(@project.namespace, @project, tree_join(@ref, readme.path), viewer: :rich, format: :json)
2017-10-16 20:21:51 +00:00
- else
.row-content-block.second-block.center
%h4
2017-10-16 20:21:51 +00:00
This project does not have a README yet
2017-10-16 20:21:51 +00:00
- if can?(current_user, :push_code, @project)
%p
A
%code README
file contains information about other files in a repository and is commonly
distributed with computer software, forming part of its documentation.
GitLab will render it here instead of this message.
2017-10-16 20:21:51 +00:00
%p
= link_to "Add Readme", @project.add_readme_path, class: 'gl-button btn btn-confirm'