fastmx/templates/another-page.html
2024-02-29 11:24:22 +01:00

9 lines
217 B
HTML

<!-- prettier-ignore -->
{% extends "base.html" %}
{% block title %}Another page!{% endblock %}
{% block content %}
<a href="/"> Main page </a>
<h1 class="font-bold text-indigo-500">Another page</h1>
{% endblock %}