removing gh-pages branch and putting everything in master

This commit is contained in:
Tom Johnson
2015-04-20 12:10:04 -07:00
parent 8c1ccbcc57
commit f0b925337f
360 changed files with 119491 additions and 2 deletions

14
news.md Normal file
View File

@ -0,0 +1,14 @@
---
title: News
permalink: /news/
---
{% assign counter = '0' %}
{% for post in site.posts %}
{% for tag in post.tags %}
{% if tag == "news" %}
<li><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> ({{ post.date | date: "%b %-d, %Y" }})</li>
<div class="summary">{{post.summary}}</div>
{% endif %}
{% endfor %}
{% endfor %}