debian-mirror-gitlab/app/views/projects/_wiki.html.haml

18 lines
877 B
Text
Raw Normal View History

2016-11-03 12:29:30 +05:30
- if @wiki_home.present?
%div{ class: container_class }
2020-07-28 23:09:34 +05:30
.md.gl-mt-3.gl-mb-3
2019-07-07 11:18:12 +05:30
= render_wiki_content(@wiki_home)
2016-11-03 12:29:30 +05:30
- else
- can_create_wiki = can?(current_user, :create_wiki, @project)
2018-12-13 13:39:08 +05:30
.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
2016-11-03 12:29:30 +05:30
%h4
2018-12-13 13:39:08 +05:30
= _("This project does not have a wiki homepage yet")
2016-11-03 12:29:30 +05:30
- if can_create_wiki
%p
2018-12-13 13:39:08 +05:30
= _("Add a homepage to your wiki that contains information about your project and GitLab will display it here instead of this message.")
2021-04-29 21:17:54 +05:30
= link_to _("Create your first page"), wiki_path(@project.wiki) + '?view=create', class: "btn gl-button btn-confirm"