2024-07-23 20:08:45 +02:00
|
|
|
{% extends "base.html" %}
|
2024-08-04 20:40:09 +02:00
|
|
|
|
2024-07-24 22:33:25 +02:00
|
|
|
{% block title %}Pharma Libre{% endblock %}
|
2024-07-23 20:08:45 +02:00
|
|
|
|
2024-08-04 20:40:09 +02:00
|
|
|
{% block body %}
|
|
|
|
<div class="py-10">
|
2024-07-23 20:08:45 +02:00
|
|
|
<header>
|
2024-08-04 20:40:09 +02:00
|
|
|
<div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
|
2024-08-06 00:18:09 +02:00
|
|
|
<h1
|
|
|
|
id="page-title"
|
|
|
|
class="text-3xl font-bold leading-tight tracking-tight text-gray-900"
|
|
|
|
>
|
|
|
|
{% include "skeletons/page-title.html" %}
|
|
|
|
</h1>
|
2024-08-04 20:40:09 +02:00
|
|
|
</div>
|
2024-07-23 20:08:45 +02:00
|
|
|
</header>
|
|
|
|
<main>
|
2024-08-06 00:18:09 +02:00
|
|
|
<div
|
|
|
|
id="main-container"
|
|
|
|
class="mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8"
|
|
|
|
>
|
2024-08-04 20:40:09 +02:00
|
|
|
<!-- Your content -->
|
|
|
|
<div
|
2024-08-06 00:18:09 +02:00
|
|
|
hx-get="/pages/home"
|
2024-08-04 20:40:09 +02:00
|
|
|
hx-target="this"
|
|
|
|
hx-trigger="load"
|
|
|
|
hx-swap="outerHTML"
|
|
|
|
>
|
2024-08-06 00:18:09 +02:00
|
|
|
{% include "skeletons/card.html" %}
|
2024-08-04 20:40:09 +02:00
|
|
|
</div>
|
2024-07-23 20:08:45 +02:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|