Krys4lide/crates/app/templates/index.html

24 lines
380 B
HTML
Raw Normal View History

{% extends "base.html" %}
2024-07-24 22:33:25 +02:00
{% block title %}Pharma Libre{% endblock %}
{% block body %}
<div>
<header>
2024-08-02 23:33:48 +02:00
<h1 class="text-3xl font-bold underline">Pharma Libre</h1>
</header>
<main>
<div
id="hello"
hx-get="/hello"
hx-target="this"
hx-trigger="load"
hx-swap="outerHTML"
>
Loading...
</div>
</main>
</div>
{% endblock %}