Configure services
Configure embedded templates.
Hugo provides embedded templates to simplify site and content creation. Some of these templates are configurable. For example, the embedded Google Analytics template requires a Google tag ID.
This is the default configuration:
services:
disqus:
shortname: ''
googleAnalytics:
id: ''
rss:
limit: -1
x:
disableInlineCSS: false
[services]
[services.disqus]
shortname = ''
[services.googleAnalytics]
id = ''
[services.rss]
limit = -1
[services.x]
disableInlineCSS = false
{
"services": {
"disqus": {
"shortname": ""
},
"googleAnalytics": {
"id": ""
},
"rss": {
"limit": -1
},
"x": {
"disableInlineCSS": false
}
}
}
- disqus.shortname
- (
string) Theshortnameused with the Disqus commenting system. See details. To access this value from a template:{{ .Site.Config.Services.Disqus.Shortname }} - googleAnalytics.id
- (
string) The Google tag ID for Google Analytics 4 properties. See details. To access this value from a template:{{ .Site.Config.Services.GoogleAnalytics.ID }} - rss.limit
- (
int) The maximum number of items to include in an RSS feed. Set to-1for no limit. Default is-1. See details. To access this value from a template:{{ .Site.Config.Services.RSS.Limit }} - x.disableInlineCSS
- (
bool) Whether to disable the inline CSS rendered by the embeddedxshortode. See details. Default isfalse. To access this value from a template:{{ .Site.Config.Services.X.DisableInlineCSS }}
Last updated:
February 14, 2026
:
Merge commit '8f3c066d23f431fb2c53d97ea489e4c28b42bd82' (3e2f98235)
Improve this page