24 lines
496 B
Markdown
24 lines
496 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>
|
||
|
{% for p in page.collection %}
|
||
|
<li><a href="{{ p.url }}">{{ p.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
<ul>
|
||
|
{% for student in taxonomy.findTaxonomy({'teacher':'hladek','type':'student'}) %}
|
||
|
<li><a href="{{ student.url }}">{{ student.title }}</a> {{student.taxonomy.start_year}}, {{student.taxonomy.topics}}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|