diff options
-rw-r--r-- | exampleSite/content/_index.md | 1 | ||||
-rw-r--r-- | layouts/partials/docs/html-head.html | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md index 254597c..6cb0a37 100644 --- a/exampleSite/content/_index.md +++ b/exampleSite/content/_index.md @@ -1,4 +1,5 @@ --- +title: Index type: docs --- diff --git a/layouts/partials/docs/html-head.html b/layouts/partials/docs/html-head.html index c4134be..e127495 100644 --- a/layouts/partials/docs/html-head.html +++ b/layouts/partials/docs/html-head.html @@ -1,9 +1,9 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> -<title>{{- template "title" . }} | {{ .Site.Title -}}</title> +<title>{{- template "title" . }} | {{ .Site.Title -}}</title> <link href="https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto:300,400,700" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css"> {{ $styles := resources.Get "book.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }} -<link rel="stylesheet" href="{{ $styles.Permalink }}">
\ No newline at end of file +<link rel="stylesheet" href="{{ $styles.RelPermalink }}">
\ No newline at end of file |