hugo-relie/themes/hello-friend-ng/layouts/_default/baseof.html

29 lines
500 B
HTML
Raw Normal View History

2023-06-19 13:40:17 +02:00
<!DOCTYPE html>
<html lang="{{ .Site.Language }}">
2023-10-01 13:39:28 +02:00
<head>
{{ partial "head.html" . }}
<link rel="stylesheet" href="/mermaid.css">
</head>
{{ block "body" . }}
<body>
2023-06-19 13:40:17 +02:00
{{ end }}
2023-10-01 13:39:28 +02:00
<div class="container">
{{ partial "header.html" . }}
2023-06-19 13:40:17 +02:00
2023-10-01 13:39:28 +02:00
<div class="content">
{{ block "main" . }}{{ end }}
2023-06-19 13:40:17 +02:00
</div>
2023-10-01 13:39:28 +02:00
{{ block "footer" . }}
{{ partial "footer.html" . }}
{{ end }}
</div>
{{ partial "javascript.html" . }}
</body>
</html>