selfprivacy.org/_vendor/github.com/google/docsy/layouts/docs/baseof.print.html

23 lines
684 B
HTML
Raw Normal View History

2024-04-21 23:04:16 +00:00
<!doctype html>
<html itemscope itemtype="http://schema.org/WebPage" lang="{{ .Site.Language.Lang }}" class="no-js">
<head>
{{ partial "head.html" . }}
</head>
<body class="td-{{ .Kind }}{{ with .Page.Params.body_class }} {{ . }}{{ end }}">
<header>
{{ partial "navbar.html" . }}
</header>
<div class="container-fluid td-outer">
<div class="td-main">
<div class="row flex-xl-nowrap">
2024-04-25 22:15:39 +00:00
<main class="col-12 col-md-9 col-xl-8 ps-md-5" role="main">
2024-04-21 23:04:16 +00:00
{{ block "main" . }}{{ end }}
</main>
</div>
</div>
{{ partial "footer.html" . }}
</div>
{{ partial "scripts.html" . }}
</body>
</html>