website/layouts/_default/baseof.html
2025-01-17 23:32:57 -03:00

24 lines
No EOL
518 B
HTML

<!DOCTYPE html>
<html>
<head>
{{ $style := resources.Get "sass/main.scss" | css.Sass | resources.Minify }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>
{{ block "title" . }}
{{ .Site.Title }}
{{ end }}
</title>
</head>
<body>
{{ block "main" . }}
<!-- The part of the page that begins to differ between templates -->
{{ end }}
<hr>
{{ partial "footer" }}
</body>
</html>