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