14 lines
343 B
HTML
14 lines
343 B
HTML
---
|
|
layout: default
|
|
title: posts index
|
|
---
|
|
|
|
<div id="home">
|
|
<h1>Blog Posts</h1>
|
|
<ul class="posts">
|
|
{% for post in site.posts %}
|
|
{%unless post.title == 'posts index' %}
|
|
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}"> {{ post.title }}</a></li>
|
|
{%endunless%}
|
|
{% endfor %}
|
|
</ul>
|