Error: Error building site: failed to render pages: render of "page" failed: execute of template failed: template: _internal/disqus.html:1:16: executing "_internal/disqus.html" at <.Site.Config.Privacy.Disqus>: can't evaluate field Site in type string
I guess hugo just can’t find disqus privacy settings. I searched around the hugo codebase and copyed back:
Remove that [services] stuff. That has no function.
Remove that [privacy.disqus] section, false is the default is the default setting and these lines have no function.
The error is: at <.Site.Config.Privacy.Disqus>: can't evaluate field Site in type string - this points to a problem further up the line. Hugo can’t evaluate the Site parameter, not the privacy.disqus-part. Check your config.toml if there are toplevel settings between subsections, if there are multiple privacy sections and so on.
If removing those points do not change the issue then please post a link to your repo, there are more points where error might occur, but I suspect issues with the structure of your configuration file.
That would probably be worth a bug report on Github if that is the case. Internal templates should access variables from the root ($) instead of assuming how they are called.