{% extends "base.html" %} {% block title %}{{ blogpost.title }}{% endblock %} {% block content %} {% if blogpost.draft %}
⚠ This post is a draft — only you can see it.
Edit
{% endif %}

{{ blogpost.title }}

{% if blogpost.category %}

{{ blogpost.category }}

{% endif %} {% if blogpost.tags %}
{% for tag in blogpost.tags.split(',') %} {% set t = tag.strip() %} {% if t %} #{{ t }} {% endif %} {% endfor %}
{% endif %}
{% if blogpost.images %}

Gallery

{% for image in blogpost.images|from_json %}
Blog image {{ loop.index }}
{% endfor %}
{% endif %}
{{ blogpost.content | markdown | safe }}
{% endblock %}