Although a bit off-topic, I think you should also add page description to single page template instead of a site level description?
|
{{ with .Site.Params.about }}<meta name="description" content="{{ .description }}">{{ end }} |
Maybe something like this, I'm not sure whether the page description would just override the site one.
<!-- Site level -->
{{ with .Site.Params.about }}<meta name="description" content="{{ .description }}">{{ end }}
<!-- Page level -->
<meta name="description" content="{{ .Params.description }}">
Originally posted by @Vinfall in #55 (comment)
Although a bit off-topic, I think you should also add page description to single page template instead of a site level description?
risotto/layouts/partials/head.html
Line 2 in 4343550
Maybe something like this, I'm not sure whether the page description would just override the site one.
Originally posted by @Vinfall in #55 (comment)