danfunk 47fbe48704 Adding Clarity to track webpage usage
Re-arange homepage
Improved cookie consent
Reintroduce Newsletter sing-up
2023-09-21 15:51:46 -04:00

39 lines
785 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ partial "meta.html" . }}
<title>{{ block "title" . }}{{ .Params.Title }}, {{ .Site.Title }}{{ end }}</title>
{{ partial "css.html" . }}
</head>
<body>
{{ if ne .Site.Params.preloader false }}
<!-- Preloader -->
<div id="preloader">
<div id="status"></div>
</div>
{{ end }}
{{ block "main" . }}
{{ partial "single/single.html" . }}
{{ if not .Params.no_comments }}
<div>
{{ partial "comments.html" . }}
</div>
{{ end }}
{{ partial "footer.html" . }}
<!-- Back To Top Button -->
<div id="backtotop"><a href="#"></a></div>
{{ partial "sidebar.html" . }}
{{ end }}
{{ partial "javascript.html" . }}
</body>
</html>