debian-mirror-gitlab/app/views/projects/pages/_use.html.haml

11 lines
867 B
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
- unless @project.pages_deployed?
2018-11-20 20:47:30 +05:30
.card.border-info
.card-header.bg-info.text-white
2019-12-21 20:55:43 +05:30
= s_('GitLabPages|Configure pages')
2018-11-08 19:23:39 +05:30
.card-body
2021-03-08 18:12:59 +05:30
%p.gl-mb-0
2021-04-29 21:17:54 +05:30
- docs_link_start = "<a href='#{help_page_path('user/project/pages/index')}' target='_blank' rel='noopener noreferrer'>".html_safe
2021-03-11 19:13:27 +05:30
- samples_link_start = "<a href='https://gitlab.com/pages' target='_blank' rel='noopener noreferrer'>".html_safe
2019-12-21 20:55:43 +05:30
- link_end = '</a>'.html_safe
2021-04-29 21:17:54 +05:30
= s_('GitLabPages|Your Pages site is not configured yet. See the %{docs_link_start}GitLab Pages documentation%{link_end} to learn how to upload your static site and have GitLab serve it. You can also take some inspiration from the %{samples_link_start}sample Pages projects%{link_end}.').html_safe % { docs_link_start: docs_link_start, samples_link_start: samples_link_start, link_end: link_end }