Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Shea <connor.james.shea@gmail.com>2016-10-07 04:55:40 +0300
committerConnor Shea <connor.james.shea@gmail.com>2016-10-07 04:55:40 +0300
commita83cc9517a0e515188b03f9b7fcac88e3c986179 (patch)
tree2168dcd8f71460878d212645ff2e6ef0de2811ae /layouts
parent9d050cbce8fac6d10cb716c7761d9f209234d990 (diff)
Improve styling, move around some assets, make a proof of concept home page.
Diffstat (limited to 'layouts')
-rw-r--r--layouts/default.html11
1 files changed, 6 insertions, 5 deletions
diff --git a/layouts/default.html b/layouts/default.html
index 7ba83221..dc071abf 100644
--- a/layouts/default.html
+++ b/layouts/default.html
@@ -3,20 +3,21 @@
<head>
<meta charset="utf-8">
<title><%= @item[:title] %> - GitLab Documentation</title>
- <link rel="stylesheet" href="/stylesheet.css">
+ <link rel="stylesheet" href="/assets/stylesheet.css">
+ <link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic' rel='stylesheet' type='text/css'>
<!-- you don't need to keep this, but it's cool for stats! -->
<meta name="generator" content="Nanoc <%= Nanoc::VERSION %>">
</head>
<body>
- <div id="main">
- <%= yield %>
- </div>
<div class="header">
- <h2>GitLab Documentation</h2>
+ <h2><%= link_to "GitLab Documentation", "/" %></h2>
<ul>
<li><a href="#">About</a></li>
</ul>
</div>
+ <div id="main">
+ <%= yield %>
+ </div>
</body>
</html>