---
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>