mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 11:29:28 +00:00
964968be39
Use class "hidden" instead of styled classes to ensure that input elments stay hidden when the Content-Security-Policy header has "style-src 'self';"
28 lines
609 B
HTML
28 lines
609 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language.Lang }}">
|
|
|
|
<head>
|
|
{{ partial "docs/html-head" . }}
|
|
{{ partial "docs/inject/head" . }}
|
|
</head>
|
|
|
|
<body>
|
|
<input type="checkbox" class="hidden" id="menu-control" />
|
|
<main class="flex container">
|
|
<aside class="book-menu fixed">
|
|
{{ partial "docs/menu" . }}
|
|
</aside>
|
|
|
|
<div class="book-posts">
|
|
{{ partial "docs/mobile-header" . }}
|
|
{{ template "main" . }}
|
|
{{ partial "docs/inject/footer" . }}
|
|
</div>
|
|
</main>
|
|
|
|
{{ partial "docs/inject/body" . }}
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
|
</body>
|
|
|
|
</html>
|