parcel/templates/index.html

11 lines
348 B
HTML

{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<div class="container mx-auto flex flex-col gap-4">
<div hx-get="/uploads/new" hx-target="this" hx-trigger="load" hx-target="outerHTML"></div>
<div hx-get="/uploads" hx-target="this" hx-trigger="load" hx-target="outerHTML"></div>
</div>
{% endblock %}