Hi there this is my first post, I found Grav really promissing and powerfull, excelent work!
Issue:
Following the tutorial for new theme , the metadata doesn´t show:
{% if header.description %}
<meta name="description" content="{{ header.description }}">
{% else %}
<meta name="description" content="{{ site.description }}">
{% endif %}
But if I change
header.description
with
page.header.metadata.description
it works.
{% if page.header.metadata.description %}
<meta name="description" content="{{ page.header.metadata.description }}">
{% else %}
<meta name="description" content="{{ site.description }}">
{% endif %}
Is tutorial wrong or I’m missing something?
thanks!