13 lines
214 B
HTML
13 lines
214 B
HTML
---
|
|
layout: default
|
|
title: Posts
|
|
---
|
|
|
|
<h1>all posts - <a href="/tags.html">by tag</a></h1>
|
|
|
|
<ul>
|
|
{% for post in site.posts %}
|
|
<li><a href="{{ post.url }}">{{ post.title | downcase }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|