homepage/templates/teaching.html
2025-07-09 13:58:12 +02:00

18 lines
No EOL
421 B
HTML

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