Initial commit of fresh Jekyll site

This commit is contained in:
Mathias Biilmann Christensen
2015-02-12 13:48:24 -08:00
commit dc04ae908f
16 changed files with 807 additions and 0 deletions

15
_layouts/post.html Normal file
View File

@@ -0,0 +1,15 @@
---
layout: default
---
<div class="post">
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
</header>
<article class="post-content">
{{ content }}
</article>
</div>