28 lines
610 B
HTML
28 lines
610 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Pharma Libre{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="py-10">
|
|
<header>
|
|
<div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
|
|
<h1 class="text-3xl font-bold leading-tight tracking-tight text-gray-900">Dashboard</h1>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<div class="mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8">
|
|
<!-- Your content -->
|
|
<div
|
|
id="hello"
|
|
hx-get="/hello"
|
|
hx-target="this"
|
|
hx-trigger="load"
|
|
hx-swap="outerHTML"
|
|
>
|
|
Loading...
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
{% endblock %}
|