Krys4lide/crates/app/templates/index.html

24 lines
343 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Phrama Libre{% endblock %}
{% block body %}
<div>
<header>
<h1>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 %}