Jesper Hess
9328056428
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.
17 lines
545 B
HTML
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> |