summaryrefslogtreecommitdiff
path: root/layouts/home.html
blob: bf76fc7c62ff1b7cfb1c4620545ce12c13477ed6 (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:

 - &#96;/content/_index.md&#96;
 - &#96;/layouts/home.html&#96;
` }}
<body>
  <main class="flex justify-center">
    <div class="book-page markdown">
      {{ replace $content "&#96;" "`" | markdownify }}
    </div>
  </main>

  {{ partial "docs/inject/body" . }}
  {{ template "_internal/google_analytics_async.html" . }}
</body>

</html>