blob: d2db819fc4688bef71a27ab193962645fccb4f58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
{{- partial "docs/shared" -}}
<html>
<head>
{{ partial "docs/html-head" . }}
{{ partial "docs/inject/head" . }}
</head>
{{- $content := `
# Hugo Book Theme
This is a placeholder for home page.
You can override this page in:
- `/content/_index.md`
- `/layouts/home.html`
` -}}
<body>
<main class="flex justify-center">
<div class="book-page markdown">
{{ replace $content "`" "`" | markdownify }}
</div>
</main>
{{ partial "docs/inject/body" . }}
{{ template "_internal/google_analytics_async.html" . }}
</body>
</html>
|