This commit is contained in:
Daniel Hladek 2020-01-25 20:13:10 +01:00
parent fbd617be51
commit 2328bff630
3 changed files with 27 additions and 1 deletions

View File

@ -1,6 +1,8 @@
---
title: Vzorný študent 2016
taxonomies:
type: student
start_year: 2016
teacher: hladek
topics:
- nlp

View File

@ -1,8 +1,9 @@
---
title: Vzorový študent 2017
taxonomies:
type: student
start_year: 2017
teacher: hladek
student: vzorovy_student
---
# Vzorový študent

View File

@ -0,0 +1,23 @@
---
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>