2019-03-29 16:15:43 +01:00
|
|
|
<!DOCTYPE html>
|
2019-04-23 23:02:06 +02:00
|
|
|
<html lang="{{ .Site.Language.Lang }}">
|
2019-03-29 16:15:43 +01:00
|
|
|
|
|
|
|
<head>
|
|
|
|
{{ partial "docs/html-head" . }}
|
|
|
|
{{ partial "docs/inject/head" . }}
|
|
|
|
</head>
|
2019-04-22 19:17:39 +02:00
|
|
|
{{ $content := `
|
2019-03-29 16:15:43 +01:00
|
|
|
# Hugo Book Theme
|
|
|
|
|
|
|
|
This is a placeholder for home page.
|
|
|
|
You can override this page in:
|
|
|
|
|
|
|
|
- `/content/_index.md`
|
|
|
|
- `/layouts/home.html`
|
2019-04-22 19:17:39 +02:00
|
|
|
` }}
|
2019-03-29 16:15:43 +01:00
|
|
|
<body>
|
|
|
|
<main class="flex justify-center">
|
2019-04-22 22:19:08 +02:00
|
|
|
<div class="book-home markdown">
|
2019-03-29 16:15:43 +01:00
|
|
|
{{ replace $content "`" "`" | markdownify }}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
{{ partial "docs/inject/body" . }}
|
|
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|