blog/templates/index.html
2025-12-23 22:27:51 +01:00

9 lines
No EOL
263 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
This is my blog made with Zola.
</h1>
<p><a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>.</p>
<p><a href="{{ get_url(path='@/test/_index.md') }}">Test</a>.</p>
{% endblock content %}