risotto
risotto copied to clipboard
Add page descriptions to meta description tag
Although a bit off-topic, I think you should also add page description to single page template instead of a site level description?
https://github.com/joeroe/risotto/blob/4343550d785d8cce942ac5109aa9fdd9d9a70823/layouts/partials/head.html#L2
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 https://github.com/joeroe/risotto/issues/55#issuecomment-1702182895