mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 11:29:28 +00:00
30 lines
621 B
HTML
30 lines
621 B
HTML
<!DOCTYPE html>
|
|
{{- partial "docs/shared" -}}
|
|
<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:
|
|
|
|
- `/content/_index.md`
|
|
- `/layouts/home.html`
|
|
` }}
|
|
<body>
|
|
<main class="flex justify-center">
|
|
<div class="book-home markdown">
|
|
{{ replace $content "`" "`" | markdownify }}
|
|
</div>
|
|
</main>
|
|
|
|
{{ partial "docs/inject/body" . }}
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
|
</body>
|
|
|
|
</html>
|