Files
personal-website/layouts/_default/baseof.html
T
2023-10-31 00:10:41 +01:00

22 lines
584 B
HTML

{{ $styles := resources.Get "css/baseof.css" | toCSS | minify | fingerprint }}
{{ $scripts := resources.Get "js/baseof.js" | js.Build | minify | fingerprint }}
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="{{ $styles.Permalink }}">
{{ block "styles" . }}{{ end }}
<title>
{{ block "title" . }}
{{ .Site.Title }}
{{ end }}
</title>
<script defer src="{{ $scripts.Permalink }}"></script>
</head>
<body>
{{ partial "header.html" . }}
<main>
{{ block "main" . }}{{ end }}
</main>
</body>
</html>