senju/senju/templates/haiku.jinja
2025-02-27 12:12:45 +01:00

28 lines
1 KiB
Django/Jinja

{% extends "base.jinja" %}
{% block content %}
<div class="bg-violet-900 min-h-screen flex items-center justify-center text-white">
<div class="text-center">
<div class="bg-white text-gray-900 p-10 rounded-lg shadow-lg max-w-2xl mx-auto transform -translate-y-10">
<h1 class="text-4xl font-bold text-violet-700 mb-6">Haiku of the Day</h1>
<p class="text-2xl italic leading-relaxed">
An old silent pond<br>
A frog jumps into the pond—<br>
Splash! Silence again.
</p>
</div>
<div class="flex justify-center gap-4 mt-4">
<a href="{{ url_for('index_view') }}"
class="inline-block bg-violet-600 hover:bg-violet-700 text-white font-bold py-2 px-4 rounded-lg">
Back to Home
</a>
<a href="{{ url_for('prompt_view') }}"
class="inline-block bg-violet-600 hover:bg-violet-700 text-white font-bold py-2 px-4 rounded-lg">
Generate Haiku
</a>
</div>
</div>
</div>
{% endblock %}