Redesign for Github Pages

This commit is contained in:
2014-06-26 18:48:13 +02:00
parent c76175799b
commit 1501da4d18
128 changed files with 4245 additions and 0 deletions

26
blog/index.html Normal file
View File

@@ -0,0 +1,26 @@
---
layout: page
title: Blog
---
{% include pagination.html %}
{% for post in paginator.posts %}
<article class="post">
<header>
<h3><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h3>
<p class="article-date">{{ post.date | date: "%b %-d, %Y" }} :: {{ post.date | date: "%H:%M" }} by {{ site.name }}</p>
</header>
{{ post.excerpt }}
<footer>
<p class="article-tags">
Tags:
{% for tag in post.tags %}
{{ tag }}
{% endfor%}
</p>
</footer>
</article>
{% endfor %}
{% include pagination.html %}