{% extends "madga/blog/base.html" %} {% block title %}{{ post.meta_title|default:post.title }} · {{ site.name }}{% endblock %} {% block meta_description %}{{ post.meta_description|default:post.excerpt }}{% endblock %} {% block og_title %}{{ post.meta_title|default:post.title }}{% endblock %} {% block og %} {{ block.super }} {% if post.og_image %}{% endif %} {% if post.canonical_url %}{% endif %} {% endblock %} {% block content %}
{% if post.category %}·{{ post.category.name }}{% endif %} {% if post.author %}·{{ post.author.get_full_name|default:post.author.username }}{% endif %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt }}

{% endif %}
{% if post.featured_image %}
{{ post.featured_image.alt_text }} {% if post.featured_image.caption %}
{{ post.featured_image.caption }}
{% endif %}
{% endif %}
{{ post.body_html|safe }}
{% if post.tags.all %}
{% for t in post.tags.all %} #{{ t.name }} {% endfor %}
{% endif %}
{% endblock %}