mirror of
https://github.com/godotengine/godot-website.git
synced 2026-01-05 10:10:00 +03:00
- 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
22 lines
334 B
HTML
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>
|