blog/templates/index.html

9 lines
263 B
HTML
Raw Normal View History

2025-03-27 16:03:55 +01:00
{% 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 %}