forked from KEMT/zpwiki
27 lines
459 B
Markdown
27 lines
459 B
Markdown
---
|
|
title: "Témy a projekty"
|
|
cache_enable: false
|
|
process:
|
|
markdown: false
|
|
twig: true
|
|
content:
|
|
items: "@self.children"
|
|
order:
|
|
by: date
|
|
dir: dest
|
|
---
|
|
|
|
<h2>Predmety</h2>
|
|
<ul>
|
|
{% for p in page.collection %}
|
|
<li><a href="{{ p.url }}">{{ p.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<h2>Študenti</h2>
|
|
<ul>
|
|
{% for student in taxonomy.findTaxonomy({'teacher':'hladek'}) %}
|
|
<li><a href="{{ student.url }}">{{ student.title }}</a> </li>
|
|
{% endfor %}
|
|
</ul>
|