{% extends "base.html" %} {% block page_title %} {{ config.title | default("bckt") }} {% endblock page_title %} {% block page_meta %} {% set canonical = base_url ~ post.permalink %} {% if post.image %} {% endif %} {% endblock page_meta %} {% block content %}
{% if post.tags %}

Tags: {% for tag in post.tags %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}

{% endif %} {{ post.body | safe }}
{% endblock content %}