site/index.html

24 lines
506 B
HTML
Raw Normal View History

2014-10-20 20:33:40 +00:00
---
layout: default
---
2014-07-05 21:14:58 +00:00
2014-10-20 20:33:40 +00:00
<div class="home">
2014-07-05 21:14:58 +00:00
2014-10-20 20:33:40 +00:00
<h1 class="page-heading">Posts</h1>
2014-07-05 21:14:58 +00:00
2014-10-20 20:33:40 +00:00
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
2014-07-05 21:14:58 +00:00
2014-10-20 20:33:40 +00:00
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
2014-07-05 21:14:58 +00:00
2014-10-20 20:33:40 +00:00
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
2014-07-05 21:14:58 +00:00
</div>