depot/web/quotes/templates/alert.html

14 lines
389 B
HTML

{% extends "base.html" %}
{% block content_extra_classes %}flex justify-center{% endblock %}
{% block content %}
<div class="w-4/6 m-8">
<h1 class="text-7xl font-bnto uppercase">
{% block content_title %}{% endblock %}
</h1>
{% block content_wrap %}
<p class="text-3xl mt-8">{% block content_text %}{% endblock %}</p>
{% endblock %}
</div>
{% endblock %}