- Add dedicatedPage flag to integration registry (25 true, 50 false) - Delete hardcoded nextjs/react/vue/wordpress route pages (wrong metadata) - Hub page routes non-dedicated integrations to /integrations/script-tag - Add 301 redirects for 50 removed slugs → /integrations/script-tag - Migrate guide content from TSX to MDX (content/integrations/*.mdx) - Add gray-matter, next-mdx-remote, remark-gfm dependencies - Add content loader (lib/integration-content.ts) matching ciphera-website pattern - Add prebuild script for integration guide index generation - Sitemap reduced from 83 to 35 URLs with real lastmod dates - Remove seoDescription from registry (now in MDX frontmatter)
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
---
|
|
title: "Hugo"
|
|
description: "Add Pulse analytics to your Hugo site via a partial or base template."
|
|
category: "ssg"
|
|
brandColor: "#FF4088"
|
|
officialUrl: "https://gohugo.io/documentation"
|
|
relatedIds: ["jekyll", "eleventy", "astro"]
|
|
date: "2026-03-28"
|
|
---
|
|
|
|
Add the Pulse script via a Hugo partial or directly in your base template.
|
|
|
|
---
|
|
|
|
## Method 1: Create a partial
|
|
|
|
Create an analytics partial with a production guard using Hugo's `.Site.IsServer` flag.
|
|
|
|
<CodeBlock filename="layouts/partials/analytics.html">{`{{ if not .Site.IsServer }}
|
|
<script
|
|
defer
|
|
data-domain="your-site.com"
|
|
src="https://pulse.ciphera.net/script.js"
|
|
></script>
|
|
{{ end }}`}</CodeBlock>
|
|
|
|
## Method 2: Include the partial in your base layout
|
|
|
|
Add the partial to your `baseof.html` layout.
|
|
|
|
<CodeBlock filename="layouts/_default/baseof.html">{`<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{{ partial "analytics.html" . }}
|
|
<title>{{ .Title }}</title>
|
|
</head>
|
|
<body>
|
|
{{ block "main" . }}{{ end }}
|
|
</body>
|
|
</html>`}</CodeBlock>
|
|
|
|
For more details, see the [Hugo partials docs](https://gohugo.io/templates/partials/).
|