Re-add talk templates and partials
This commit is contained in:
parent
d31410792b
commit
814dd9d97e
8 changed files with 112 additions and 1 deletions
17
source/_pages/talks.html.twig
Normal file
17
source/_pages/talks.html.twig
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
title: Talks and Workshops
|
||||
use:
|
||||
- talks
|
||||
---
|
||||
|
||||
{% for talk in data.talks|sort((a,b) => a.sortable_date < b.sortable_date) %}
|
||||
<article>
|
||||
<h2>
|
||||
<a href="{{ talk.url }}">
|
||||
{{ talk.title }}
|
||||
</a>
|
||||
</h2>
|
||||
|
||||
<p>{{ talk.description }}</p>
|
||||
</article>
|
||||
{% endfor %}
|
Loading…
Add table
Add a link
Reference in a new issue