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

21
archive.html Normal file
View File

@ -0,0 +1,21 @@
---
title: Archive
permalink: "/archive/"
search: exclude
related_pages: none
---
<div class="page-archive">
{% for post in site.posts %}
{% assign post_month_year = post.date | date: "%B %Y" %}
{% assign newer_post_month_year = post.next.date | date: "%B %Y" %}
{% if post_month_year != newer_post_month_year %}
<h3 class="section-header-archive">
{{ post_month_year }}
</h3>
{% endif %}
<p>
<a href="{{ post.url | prepend:site.baseurl}}" class="post-title-archive">{{ post.title }}</a>
<small class="text-muted">{{ post.date | date_to_string }}</small>
</p>
{% endfor %}
</div>