{% extends "blog/blog_post_list.html" %} {% load mezzanine_tags comment_tags keyword_tags rating_tags i18n future disqus_tags %} {% block meta_title %}{{ blog_post.meta_title }}{% endblock %} {% block meta_keywords %}{% metablock %} {% keywords_for blog_post as tags %} {% for tag in tags %}{% if not forloop.first %}, {% endif %}{{ tag }}{% endfor %} {% endmetablock %}{% endblock %} {% block meta_description %}{% metablock %} {{ blog_post.description }} {% endmetablock %}{% endblock %} {% block title %} {% endblock %} {% block main %}
{% block blog_post_main%}
{% block blog_post_list_post_title %} {{block.super}} {% endblock %}
{% block blog_post_list_post_metainfo %} {{block.super}} {% endblock %}

{% if settings.BLOG_USE_FEATURED_IMAGE and blog_post.featured_image %} {% block blog_post_list_post_featured_image %} {{block.super}} {% endblock %} {% endif %}

{% block blog_post_list_post_content %} {% editable blog_post.content %} {{ blog_post.content|richtext_filters|safe }} {% endeditable %} {% endblock %} {% block blog_post_detail_content %} {% endblock %} {% block read_more%} {% endblock %} {% block blog_post_detail_keywords %} {% keywords_for blog_post as tags %} {% if tags %}
{% for tag in tags %} {{tag}} {% endfor %}
{% endif %} {% endblock %} {% block blog_post_detail_sharebuttons %} {% set_short_url_for blog_post %}
{% endblock %}
{% endblock %}
{% block blog_post_detail_rating %}
{% rating_for blog_post %}
{% endblock %} {% block blog_post_previous_next %} {% endblock %} {% block blog_post_detail_related_posts %} {% if blog_post.related_posts.all %} {% endif %} {% endblock %} {% block blog_post_detail_comments %} {% if blog_post.allow_comments %}{% comments_for blog_post %}{% endif %} {% endblock %} {% endblock %}