summaryrefslogtreecommitdiff
path: root/app/views/projects/_wiki.html.haml
blob: 5adca007f7ec12659333e1eb8178cd21fcb98113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- if @wiki_home.present?
  %div{ class: container_class }
    .prepend-top-default.append-bottom-default
      .wiki
        = render_wiki_content(@wiki_home, legacy_render_context(params))
- else
  - can_create_wiki = can?(current_user, :create_wiki, @project)
  .project-home-empty{ class: [('row-content-block' if can_create_wiki), ('content-block' unless can_create_wiki)] }
    .text-center{ class: container_class }
      %h4
        This project does not have a wiki homepage yet
      - if can_create_wiki
        %p
          Add a homepage to your wiki that contains information about your project
        %p
          We recommend you
          = link_to "add a homepage", project_wiki_path(@project, :home)
          to your project's wiki and GitLab will show it here instead of this message.