19 lines
252 B
Markdown
19 lines
252 B
Markdown
|
---
|
||
|
title: "Témy a projekty"
|
||
|
process:
|
||
|
markdown: false
|
||
|
twig: true
|
||
|
content:
|
||
|
items: "self.children"
|
||
|
order:
|
||
|
by: date
|
||
|
dir: dest
|
||
|
|
||
|
---
|
||
|
|
||
|
{% for p in page.collection.order('folder','asc') %}
|
||
|
<h2>{{ p.title }}</h2>
|
||
|
{{ p.summary }}
|
||
|
{% endfor %}
|
||
|
|