Skeleton jekyll site

This commit is contained in:
Aaron Neyer
2014-01-17 19:11:30 -05:00
commit 534cf5a505
8 changed files with 314 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
---
layout: default
title: Your New Jekyll Site
---
<div id="home">
<h1>Blog Posts</h1>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>