Add docs folder

This commit is contained in:
Jeremy Thomas
2016-09-11 11:55:14 +01:00
parent b9e3dde692
commit f972f32a77
114 changed files with 21748 additions and 11 deletions

28
docs/blog.html Normal file
View File

@@ -0,0 +1,28 @@
---
layout: default
route: blog
---
{% include blog-hero.html %}
{% for post in site.posts %}
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-8">
<p class="subtitle4">
{{ post.date | date_to_string }}
</p>
<h2 class="title">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h2>
<div class="content">
{{ post.content }}
</div>
</div>
</div>
</div>
</section>
{% endfor %}