{% 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 content %} {# Longform: wider column, drop cap on first paragraph, larger body type. #}
{% if post.category %} · {{ post.category.name }}{% endif %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt }}

{% endif %} {% if post.author %}
por {{ post.author.get_full_name|default:post.author.username }}
{% 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 %}