20 lines
303 B
Twig
20 lines
303 B
Twig
---
|
|
layout: default
|
|
title: Blog
|
|
nav: blog
|
|
use:
|
|
- posts
|
|
---
|
|
{% block content %}
|
|
<h1>Blog</h1>
|
|
|
|
{% if data.posts %}
|
|
<ul>
|
|
{% for post in data.posts %}
|
|
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}{% endblock %} |