{% extends "base.html" %} {% block title %}{{ blogpost.title }}{% endblock %} {% block content %} {{ 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 %} {% endfor %} {% endif %} {{ blogpost.content | safe }} ← Back to Blog {% endblock %}
{{ blogpost.category }}