homepage/templates/presentations.html
2025-05-13 10:48:42 +02:00

18 lines
No EOL
444 B
HTML

{% extends 'base.html' %}
{% block title %}Yan Lin's Presentations{% endblock %}
{% block header_title %}Yan Lin's Presentations{% endblock %}
{% block navigation %}
{% endblock %}
{% block content %}
<article class="section mt-4">
<div class="list-group list-group-flush">
{% for presentation in data.presentations %}
{% include 'partials/presentation.html' %}
{% endfor %}
</div>
</article>
{% endblock %}