2020-01-25 19:13:10 +00:00
|
|
|
---
|
|
|
|
title: "Témy a projekty"
|
2020-01-26 14:04:19 +00:00
|
|
|
cache_enable: false
|
2020-01-25 19:13:10 +00:00
|
|
|
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>
|
2020-01-26 14:38:45 +00:00
|
|
|
|
|
|
|
<h2>Študenti</h2>
|
2020-01-25 19:13:10 +00:00
|
|
|
<ul>
|
2020-01-26 08:07:32 +00:00
|
|
|
{% for student in taxonomy.findTaxonomy({'teacher':'hladek'}) %}
|
2020-01-26 14:38:45 +00:00
|
|
|
<li><a href="{{ student.url }}">{{ student.title }}</a> </li>
|
2020-01-25 19:13:10 +00:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|