hugo/cloudflare
Maxim Lebedev 7ceca4ca46
🚚 Moved modules from GitLab to Gitea
2022-03-27 19:33:04 +05:00
..
layouts/partials ♻️ Refactored CloudFlare WebAnalytics partial 2021-06-06 15:47:40 +05:00
README.md ♻️ Refactored CloudFlare WebAnalytics partial 2021-06-06 15:47:40 +05:00
config.yaml Added Cloudflare WebAnalytics module 2020-12-25 21:03:49 +05:00
go.mod 🚚 Moved modules from GitLab to Gitea 2022-03-27 19:33:04 +05:00

README.md

Cloudflare

Cloudflare tools for compiled Hugo-website.

Install

Config

Import module in your site
configuration:

imports:
  - path: gitlab.com/toby3d/hugo/cloudflare

Then, connect and configure the necessary/all modules.

Web Analytics

See the official Cloudflare documentation
about how it works and how to get the token.

Install

Config

baseUrl: https://example.com/
params:
  cloudflare:
    webAnalytics:
      token: 1d59a54b73a94728a4a9ed1b09767b1f
      spa: true # For SPA apps/websites

Template

Inject cloudflare/web-analytics partial in your <body> (preferably as close as possible to the closing tag):

<body>
  ...
  {{ partialCached "cloudflare/web-analytics" . }}
</body>