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

18 lines
474 B
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
- if @project.pages_deployed?
2018-11-08 19:23:39 +05:30
.card
.card-header
2017-08-17 22:00:37 +05:30
Access pages
2018-11-08 19:23:39 +05:30
.card-body
2017-08-17 22:00:37 +05:30
%p
%strong
2019-12-04 20:38:33 +05:30
= _("Your pages are served under:")
2017-08-17 22:00:37 +05:30
2019-12-04 20:38:33 +05:30
%p
= external_link(@project.pages_url, @project.pages_url)
2017-08-17 22:00:37 +05:30
- @project.pages_domains.each do |domain|
2019-12-04 20:38:33 +05:30
%p
= external_link(domain.url, domain.url)
.card-footer.alert-primary
= _("It may take up to 30 minutes before the site is available after the first deployment.")