new, jekyll-based blog
This commit is contained in:
15
blog/index.html
Normal file
15
blog/index.html
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
layout: page
|
||||
title: Blog Archive
|
||||
---
|
||||
{% for post in site.posts reverse %}
|
||||
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
||||
{% unless year == this_year %}
|
||||
{% assign year = this_year %}
|
||||
<h3>{{ year }}</h3>
|
||||
{% endunless %}
|
||||
<div>
|
||||
<time datetime="{{ post.date | datetime | date_to_xmlschema }}" pubdate>{{ post.date | date: "%B %d" }}</time> —
|
||||
<a href="/{{ post.url }}">{{post.title}}</a>
|
||||
</div>
|
||||
{% endfor %}
|
Reference in New Issue
Block a user