Add posts to the default page

This commit is contained in:
Kyle Johnson 2014-06-12 17:37:41 -04:00
parent 862547d1df
commit aaefdd2270
1 changed files with 17 additions and 0 deletions

View File

@ -26,6 +26,23 @@
<div class="row">
<div class="col-sm-9">
{% for post in site.posts %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{ post.title }}</h3>
</div>
<div class="panel-body">
{{ post.content }}
</div>
<div class="panel-footer">
<span class="date">{{ post.date }}</span>
</div>
</div>
{% endfor %}
</div>
<div class="col-sm-3">