12 lines
181 B
Twig
12 lines
181 B
Twig
|
---
|
||
|
title: Blog
|
||
|
use: [posts]
|
||
|
draft: true
|
||
|
---
|
||
|
|
||
|
<ul>
|
||
|
{% for post in data.posts %}
|
||
|
<li><a href="{{ post.url|trim('/', 'right') }}">{{ post.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|