1
0
Fork 0
mirnet.org/themes/mir/layouts/_default/baseof.html

15 lines
398 B
HTML
Raw Normal View History

2024-09-12 13:41:14 -04:00
<!doctype html>
<html lang="en">
{{ partial "head.html" . }}
<body class="bg-white text-[#192252] dark:bg-[#1E1E2C] dark:text-[#C6DEFF] flex flex-col justify-center items-center">
2024-09-12 14:21:09 -04:00
<section class="max-w-[1200px]">
2024-09-12 14:19:05 -04:00
{{ partial "nav.html" . }}
<section class="min-h-[1000px]">
{{ block "main" . }}{{ end }}
</section> {{ partial
"footer.html" . }}
</section>
2024-09-12 13:41:14 -04:00
</body>
</html>