--- layout: base.njk ---

{{ title }}

{%- from 'postmeta.macro.njk' import postmeta %} {{ postmeta({ date: page.date, author: author, content: content, center: true }) }} {% if tags.length > 0 %}
    {% for tag in tags %}
  • {% lucide "tag", { "class": "size-4 md:size-5 xl:size-6" } %} {{ tag }}
  • {%- endfor %}
{% endif %}
{{ content | safe }}