self_Hosting_website/my_space/layouts/_default/baseof.html
2024-06-03 03:05:13 +05:30

18 lines
346 B
HTML

<!doctype html>
<html lang="en" class="h-100">
{{- partial "head.html" . }}
<body class="d-flex md h-100 container-sm text-white bg-dark">
<div class="d-flex w-100 h-100 p-3 mx-auto flex-column">
{{- partial "header.html" . }}
<div id="content">
{{- block "main" . }}{{ end }}
</div>
{{- partial "footer.html" . }}
</body>
</html>