summaryrefslogtreecommitdiff
path: root/app/views/projects/_wiki.html.haml
blob: de4653dad2c38024c966796709fde71202759032 (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)
- else
  - can_create_wiki = can?(current_user, :create_wiki, @project)
  .landing{ class: [('row-content-block row p-0 align-items-center' if can_create_wiki), ('content-block' unless can_create_wiki)] }
    .col-12.col-md-3.p-0
      .svg-content
        = image_tag 'illustrations/wiki_login_empty.svg'
    .col-12.col-md-9.text-center.text-md-left.pl-md-0.pl-sm-3.mb-4
      %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 and GitLab will display it here instead of this message.")
        = link_to _("Create your first page"), project_wiki_path(@project, :home) + '?view=create', class: "btn btn-primary"