diff options
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/docs/baseof.html | 1 | ||||
-rw-r--r-- | layouts/home.html | 1 | ||||
-rw-r--r-- | layouts/partials/docs/html-head.html | 4 | ||||
-rw-r--r-- | layouts/posts/baseof.html | 1 |
4 files changed, 4 insertions, 3 deletions
diff --git a/layouts/docs/baseof.html b/layouts/docs/baseof.html index eac72f1..6ee6e40 100644 --- a/layouts/docs/baseof.html +++ b/layouts/docs/baseof.html @@ -25,7 +25,6 @@ </main> {{ partial "docs/inject/body" . }} - {{ template "_internal/google_analytics_async.html" . }} </body> </html> diff --git a/layouts/home.html b/layouts/home.html index 37f9eeb..06ae844 100644 --- a/layouts/home.html +++ b/layouts/home.html @@ -22,7 +22,6 @@ You can override this page in: </main> {{ partial "docs/inject/body" . }} - {{ template "_internal/google_analytics_async.html" . }} </body> </html> diff --git a/layouts/partials/docs/html-head.html b/layouts/partials/docs/html-head.html index 3cf5054..599695b 100644 --- a/layouts/partials/docs/html-head.html +++ b/layouts/partials/docs/html-head.html @@ -1,5 +1,7 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> +{{- template "_internal/opengraph.html" . -}} + <title>{{ partial "docs/title" . }} | {{ .Site.Title -}}</title> <!-- Theme stylesheet, you can customize scss by creating `assets/custom.scss` in your website --> @@ -23,3 +25,5 @@ Made with Book Theme https://github.com/alex-shpak/hugo-book {{ "-->" | safeHTML }} + +{{ template "_internal/google_analytics_async.html" . }} diff --git a/layouts/posts/baseof.html b/layouts/posts/baseof.html index ee20522..c58d552 100644 --- a/layouts/posts/baseof.html +++ b/layouts/posts/baseof.html @@ -25,7 +25,6 @@ </main> {{ partial "docs/inject/body" . }} - {{ template "_internal/google_analytics_async.html" . }} </body> </html> |