11 lines
137 B
Twig
11 lines
137 B
Twig
|
---
|
||
|
title: Blog
|
||
|
use:
|
||
|
- posts
|
||
|
---
|
||
|
|
||
|
{% for post in data.posts %}
|
||
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
||
|
<br>
|
||
|
{% endfor %}
|