summaryrefslogtreecommitdiff
path: root/layouts/home.html
blob: 06ae844a7797bdf4f8124fc9b3c2e4796dd9f411 (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
<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}">

<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-home markdown">
      {{ replace $content "&#96;" "`" | markdownify }}
    </div>
  </main>

  {{ partial "docs/inject/body" . }}
</body>

</html>