mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
24 lines
962 B
HTML
24 lines
962 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}" class="wf-firasans-n4-active wf-active">
|
|
<head>
|
|
{{ block "header" . -}}{{- end }}
|
|
</head>
|
|
<body {{- if .Site.Params.themeColor }} class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}" {{ end }}>
|
|
<!-- Google Tag Manager (noscript) -->
|
|
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-532RMQJ"
|
|
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
|
|
<!-- End Google Tag Manager (noscript) -->
|
|
{{ partial "sidebar.html" . }}
|
|
<div class="content container">
|
|
{{ block "content" . }}{{ end }}
|
|
<div class="footer">
|
|
{{ block "footer" . }}{{ end }}
|
|
</div>
|
|
</div>
|
|
<!-- Google Analytics -->
|
|
{{ if .Site.GoogleAnalytics -}}
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
|
{{- end }}
|
|
</body>
|
|
</html>
|