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

{{ post.title }}

{% endif %} {% if post.tags %}

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

{% endif %} {% if post.abstract %}

{{ post.abstract }}

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