Commit cd59c7e5 authored by Achilleas Pipinellis's avatar Achilleas Pipinellis Committed by Kamil Trzcinski

Clean up the text in pages view

parent b9111d8b
...@@ -183,25 +183,32 @@ ...@@ -183,25 +183,32 @@
.panel-body .panel-body
- if @project.pages_url - if @project.pages_url
%strong %strong
Congratulations. Your pages are served at: Congratulations! Your pages are served at:
%p= link_to @project.pages_url, @project.pages_url %p= link_to @project.pages_url, @project.pages_url
- else - else
%p %p
To publish pages create .gitlab-ci.yml with Learn how to upload your static site and have it served by
%strong pages job GitLab by following the #{link_to "documentation on GitLab Pages", "http://doc.gitlab.com/pages/README.html", target: :blank}.
and send public/ folder to GitLab.
%p %p
Use existing tools: In the example below we define a special job named
%code pages
which is using Jekyll to build a static site. The generated
HTML will be stored in the
%code public/
directory which will then be archived and uploaded to GitLab.
The name of the directory should not be different than
%code public/
in order for the pages to work.
%ul %ul
%li %li
%pre %pre
:plain :plain
pages: pages:
image: jekyll image: jekyll/jekyll
script: jekyll build script: jekyll build -d public/
artifacts: artifacts:
paths: paths:
- public - public/
- if @project.pages_url && can?(current_user, :remove_pages, @project) - if @project.pages_url && can?(current_user, :remove_pages, @project)
.form-actions .form-actions
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment