summaryrefslogtreecommitdiff
path: root/app/views/projects/_readme.html.haml
blob: 0a1cecfdcdf90dd8a0f0caf99af3bec2d6451853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- if readme = @repository.readme
  %article.file-holder.readme-holder
    .file-title
      = blob_icon readme.mode, readme.name
      = link_to namespace_project_blob_path(@project.namespace, @project, tree_join(@repository.root_ref, readme.name)) do
        %strong
          = readme.name
    .file-content.wiki
      = cache(readme_cache_key) do
        = render_readme(readme)
- else
  %h3.page-title
    This project does not have README yet
  - if can?(current_user, :push_code, @project)
    %p.slead
      A
      %code README
      file contains information about other files in a repository and is commonly
      distributed with computer software, forming part of its documentation.
      %br
      We recommend you to
      = link_to "add README", new_readme_path, class: 'underlined-link'
      file to the repository and GitLab will render it here instead of this message.