16 lines
392 B
HTML
16 lines
392 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="overflow-x-hidden">
|
|
{{ partial "head" (dict "title" .Title) }}
|
|
<body>
|
|
{{ partial "header" }}
|
|
<main>
|
|
<div id="banner"></div>
|
|
<div class="flex justify-center w-full mt-5">
|
|
<div class="prose w-3/6">
|
|
{{ block "main" . }}{{ end }}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{{ partial "footer" }}
|
|
</body>
|
|
</html>
|