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

18 lines
No EOL
402 B
HTML

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