18 lines
No EOL
444 B
HTML
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 %} |