diff options
author | Jiawei Huang | 2020-06-14 14:05:14 -0700 |
---|---|---|
committer | Jiawei Huang | 2020-06-14 14:11:54 -0700 |
commit | 398ca6e2f300cce5c7bf7fa69fde42b4b592f5a4 (patch) | |
tree | b1c500b6d8a9df942f9c1f42b31149a45fcef8df /exampleSite | |
parent | 1a9b75fa6216334d0a9a1c379dba212888ce6f76 (diff) | |
download | hugo-theme-fuji-398ca6e2f300cce5c7bf7fa69fde42b4b592f5a4.tar.gz hugo-theme-fuji-398ca6e2f300cce5c7bf7fa69fde42b4b592f5a4.tar.bz2 hugo-theme-fuji-398ca6e2f300cce5c7bf7fa69fde42b4b592f5a4.zip |
Add preliminary Google AdSense support
When `googleAdsense` is set in `config.toml`, the AdSense code snippet
will be inserted between the `<head></head>` tags of your site. Only
Google AdSense Auto ads is supported at the moment.
Diffstat (limited to 'exampleSite')
-rw-r--r-- | exampleSite/config.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 72e22b7..4ba95b6 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -29,6 +29,10 @@ paginate = 10 # googleAnalyticsTid = "UA-000000000-0" # googleAnalyticsRoute = "https://*.*.workers.dev/" + # Google AdSense + # The AdSense code will be inserted between the head tags of your site. + # googleAdsense = "0000000000000000" + # Word counter and read time indicator in post metadata showWordCounter = true showReadTime = false |