Closed Hyrtsi closed 2 years ago
Edit: SOLVED!
Answer:
_layouts/post.html
from this repoIn my case, I'm adding
<p class="post-meta">
{% if page.tags.size > 0 %}
Tag{% if page.tags.size > 1 %}s{% endif %}:
{{ page.tags | sort | join: ", " }}
{% endif %}
</p>
before </header>
Greetings. Minima has the post header like this:
I would like to add the tags of the post there so it would look something like this:
Bicycling around the world
Oct 9, 2022 Tags:
bicycling, travelling
How do I do that? I have tried the following:
custom-head.html
Thank you.