From 39b140b6252316a47087e695e98add648aa105f5 Mon Sep 17 00:00:00 2001 From: Gabriel Koch Date: Wed, 10 Mar 2021 21:14:21 +0100 Subject: [PATCH] Add support for Google Analytics --- README.md | 10 ++++++++++ layouts/partials/head.html | 2 ++ 2 files changed, 12 insertions(+) diff --git a/README.md b/README.md index cc0a97f1..f2afdb02 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,16 @@ comments: true --- ``` +### Google Analytics + +Tale supports Google Analytics integration using Hugo's provided `google_analytics_async` template. + +To enable it, add the `googleAnalytics` tag to your `config.toml`. It will be added on all pages. + +```toml +googleAnalytics = "UA-133700000-0" +``` + ### Custom summaries Tale allows for writing the summary of your posts manually by setting the `summary` variable in the page frontmatter. If this variable is not set, the summary that Hugo automatically generates will be used. diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 6de6ea5b..fb28bad7 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,4 +1,6 @@ + + {{ template "_internal/google_analytics_async.html" . }} {{- if .IsHome }}