summaryrefslogtreecommitdiff
path: root/app/views/projects/pages/_use.html.haml
blob: 20e6338fa76d8487448b6815412d0f520ea811a8 (plain)
1
2
3
4
5
6
7
8
9
10
- unless @project.pages_deployed?
  .card.border-info
    .card-header.bg-info.text-white
      = s_('GitLabPages|Configure pages')
    .card-body
      %p.gl-mb-0
        - docs_link_start = "<a href='#{help_page_path('user/project/pages/index')}' target='_blank' rel='noopener noreferrer'>".html_safe
        - samples_link_start = "<a href='https://gitlab.com/pages' target='_blank' rel='noopener noreferrer'>".html_safe
        - link_end = '</a>'.html_safe
        = 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 }