Files
godot-website/_includes/events-year.html
Yuri Sizov e666916216 Rework community events using data collections (#628)
- Replace the events page with a generated template
- Convert all events to the data collection format
- Fix various markup issues, typos in texts
- Add collection item templates for articles, showcase, and events
- Fix shadowing in showcase items where `page.xbox` was defined twice
2023-04-24 18:41:54 +02:00

22 lines
334 B
HTML

<div class="events-shortlist">
<div>
<h2 id="{{ include.year }}">{{ include.year }}</h2>
<ul>
{% for shortlist_item in include.shortlist %}
{{ shortlist_item }}
{% endfor %}
</ul>
</div>
</div>
<div class="events-fulllist">
{% for fullist_item in include.fulllist %}
{{ fullist_item }}
{% endfor %}
</div>