pollo/pages/templates/dashboard.html

22 lines
436 B
HTML
Raw Normal View History

2024-06-27 21:23:51 -06:00
{{define "title"}}
2024-06-27 21:51:00 -06:00
Pollo // Dashboard
2024-06-27 21:23:51 -06:00
{{end}}
{{define "headercontent"}}
2024-06-27 21:51:00 -06:00
Pollo // Dashboard
2024-06-27 21:23:51 -06:00
{{end}}
{{define "head"}}
<link rel="stylesheet" href="/public/css/styles.css" />
{{end}}
{{define "main"}}
<div class="flex flex-col text-center items-center justify-center px-4 py-16 gap-4">
SIGNED IN
</div>
{{end}}
{{define "foot"}}
<script src="/public/js/htmx.base.js"></script>
<script src="/public/js/htmx.sse.js"></script>
{{end}}