add jekyll boilerplate

This commit is contained in:
Joel Glovier
2015-07-20 21:32:15 -04:00
parent e87d04770f
commit ed3f6156ae
23 changed files with 950 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="/">{{ site.title }}</a>
<nav class="site-nav">
{% for page in site.pages %}
{% if page.title %}
<a class="page-link" href="{{ page.url }}">{{ page.title }}</a>
{% endif %}
{% endfor %}
</nav>
</div>
</header>