{% extends "blog/base.html" %} {% load i18n thumbnail cms_tags menu_tags %} {% load url from future %} {% block meta_description %}{{ post.meta_description }}{% endblock meta_description %} {% block meta_keywords %}{{ post.meta_keywords }}{% endblock meta_keywords %} {% block canonical_url %}{% endblock canonical_url %} {% block title %}{{ post.get_title }}{% endblock %} {% block breadcrumb %} {% endblock breadcrumb %} {% block content_blog %}{% spaceless %}

{% render_model post "title" %}

{{ post.date_published|date:"DATE_FORMAT" }}

{% if post.main_image_id %}
{% thumbnail post.main_image post.full_image_options.size crop=post.full_image_options.crop upscale=post.full_image_options.upscale subject_location=post.main_image.subject_location quality=100 as thumb %} {{ post.main_image.default_alt_text }}
{% endif %} {% endspaceless %}
{% render_model post "abstract" %}
{% endblock content_blog %}