1
0
Fork 0

Back button

This commit is contained in:
Ava Gaiety Wroten 2022-01-14 09:34:20 -06:00
parent 95e90bfc99
commit 4f9d0d2ae4

View file

@ -2,6 +2,16 @@
{% block header %} {% block header %}
<div class="prose lg:prose-xl prose-invert m-auto text-center"> <div class="prose lg:prose-xl prose-invert m-auto text-center">
<p class="text-left">
<a href="/" class="pt-4 pr-1 inline-flex items-center text-sm font-medium text-slate-300 hover:text-slate-100">
<!-- Heroicon name: solid/arrow-narrow-left -->
<svg class="mr-3 h-5 w-5 text-gray-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd" d="M7.707 14.707a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 1.414L5.414 9H17a1 1 0 110 2H5.414l2.293 2.293a1 1 0 010 1.414z" clip-rule="evenodd" />
</svg>
Back
</a>
</p>
<h1>{{ title }}</h1> <h1>{{ title }}</h1>
<p>{{ description }}</p> <p>{{ description }}</p>
@ -30,3 +40,12 @@
</main> </main>
{% endblock %} {% endblock %}
{% block footer %}
<a href="/" class="pt-4 pr-1 inline-flex items-center text-sm font-medium text-slate-300 hover:text-slate-100">
<!-- Heroicon name: solid/arrow-narrow-left -->
<svg class="mr-3 h-5 w-5 text-gray-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd" d="M7.707 14.707a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 1.414L5.414 9H17a1 1 0 110 2H5.414l2.293 2.293a1 1 0 010 1.414z" clip-rule="evenodd" />
</svg>
Back
</a>
{% endblock %}