website/blog/index.html
Jesper Hess 9328056428
Remove duplicated blog page
There was both a blog.html in the root and under /blog.
Removed the one in the root and updated the contents
of the other to match the new theme.
2017-01-08 12:18:21 +01:00

17 lines
545 B
HTML

---
layout: page
permalink: /blog/
title: News
---
<div id="post-list">
<ul>
{% for post in site.posts %}
<li>
<span class="post-list-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<span class="post-list-link"><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></span>
<span class="post-list-excerpt">{{ post.excerpt }} [<a href="{{ post.url | prepend: site.baseurl }}">...</a>]</span>
</li>
{% endfor %}
</ul>
</div>
<p>subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>