First commit

This commit is contained in:
Yan Lin 2025-05-13 10:48:42 +02:00
commit ed9566d057
76 changed files with 4005 additions and 0 deletions

18
templates/blog.html Normal file
View file

@ -0,0 +1,18 @@
{% 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 %}