diff --git a/_config.yml b/_config.yml
index 8e7da969..db9a0219 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,3 +1,11 @@
exclude: design
markdown: redcarpet
pygments: true
+
+navigation:
+- text: About
+ url: ./about.html
+- text: Docs
+ url: ./docs.html
+- text: Source
+ url: http://git.io/rq
diff --git a/_layouts/default.html b/_layouts/default.html
index 99ad86bd..0ea1416c 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -14,6 +14,17 @@
+
+
+ {% for link in site.navigation %}
+ {% assign current = nil %}
+ {% if page.url == link.url or page.layout == link.layout %}
+ {% assign current = 'current' %}
+ {% endif %}
+
+ - {{ link.text }}
+ {% endfor %}
+
diff --git a/css/screen.css b/css/screen.css
index ba58eca2..de524cbf 100644
--- a/css/screen.css
+++ b/css/screen.css
@@ -54,6 +54,14 @@ header a
-moz-transition: color linear 0.1s;
}
+header a.current
+{
+ color: #d31f21;
+ /*background: url(../img/arrow.png) 50% 80px no-repeat;*/
+ padding-bottom: 40px;
+ background: url(http://www.lobguides.org.uk/themes/lobguides/images/arrow-down.png) no-repeat 50% 24px;
+}
+
header a:hover
{
border-bottom-color: rgba(0, 0, 0, 0.1);