summaryrefslogtreecommitdiff
path: root/_includes/header.html
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2018-07-08 15:46:56 +0200
committerPatrick Spek <p.spek@tyil.nl>2018-07-08 15:46:56 +0200
commitd16530d61a04435fd8cb4d4770c4ac715ac8ef0e (patch)
tree46499a98c6f890622e5ccbf9cf43725a7597c7e4 /_includes/header.html
Initial commit
Diffstat (limited to '_includes/header.html')
-rw-r--r--_includes/header.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..2335d7c
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,11 @@
+<header id="site-header">
+ <div class="container">
+ <nav>
+ <a href="{{ site.baseurl }}/" class="brand-name">{{ site.title }}</a>
+ {% for collection in site.collections %}
+ <a href="{{ collection.label | prepend: "/" | prepend: site.baseurl }}/">{{ collection.label | capitalize }}</a>
+ {% endfor %}
+ <a href="{{ "/support" | prepend: site.baseurl }}/">Support me</a>
+ </nav>
+ </div>
+</header>