Initial content commit

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2016-04-15 14:49:04 +02:00
parent d17d86eaa5
commit b3bd78c9ed
18 changed files with 795 additions and 0 deletions

15
_layouts/post.html Normal file
View File

@ -0,0 +1,15 @@
---
layout: default
---
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
<p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}</p>
</header>
<div class="post-content" itemprop="articleBody">
{{ content }}
</div>
</article>