I’m using these internal templates in my theme in _default/partials/head.html
{{ template “_internal/twitter_cards.html” . }}
{{ template “_internal/opengraph.html” . }}
and this description in config.toml
:
baseURL = “http://example.com/”
title = “Example Site”
description = “Just an Example Site”
but I get this rendered markup for description (other markup deleted for clarity) in index.html
in the /public site:
<meta property="og:description" content="" />
<meta name="twitter:description" content=""/>
Any ideas?