new, jekyll-based blog

This commit is contained in:
2012-01-02 23:15:05 -05:00
commit 33dd1812f8
16 changed files with 464 additions and 0 deletions

12
_includes/post.html Normal file
View File

@ -0,0 +1,12 @@
<article class="hentry" role="article">
<header>
<h1 class="entry-title">{{ post.title }}</h1>
</header>
<div class="entry-content">
{{ content }}
</div>
<footer class="meta">
<p>posted in: {{ post.tags | tag_links }}</p>
<time datetime="{{ post.date | datetime | date_to_xmlschema }}" pubdate>&mdash; <a href="/{{ post.url }}">{{ post.date | date: "%B %d, %Y" }}</a></time>
</footer>
</article>