Initial jekyll set-up & homepage

This commit is contained in:
2014-06-29 15:51:58 -04:00
parent fc846060b7
commit f7737d3ca3
18 changed files with 1924 additions and 0 deletions

13
blog/index.html Normal file
View File

@@ -0,0 +1,13 @@
---
layout: default
title: Tyler Hallada
---
<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>