depot/web/quotes/templates/alert.html

15 lines
360 B
HTML
Raw Normal View History

{% 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">{% block content_text %}{% endblock %}</p>
{% endblock %}
</div>
{% endblock %}