Initial commit of default news / blog posts

This needs work...
This commit is contained in:
Kyle Johnson 2014-06-13 08:35:50 -04:00
parent c7788d9e55
commit f0a417b55b
2 changed files with 22 additions and 0 deletions

15
_includes/posts.html Normal file
View File

@ -0,0 +1,15 @@
{% 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 %}

7
news.html Normal file
View File

@ -0,0 +1,7 @@
---
layout: page
title: News
permalink: /news/
---
{% include posts.html %}