16 lines
236 B
HTML
16 lines
236 B
HTML
---
|
|
layout: default
|
|
title: Blog
|
|
body_class: page--blog
|
|
generator: pagination
|
|
use:
|
|
- posts
|
|
---
|
|
<h1>Blog</h1>
|
|
|
|
<ul>
|
|
{% for post in page.pagination.items %}
|
|
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|