9 lines
217 B
HTML
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 %}
|