{% extends "blog/blog_post_list.html" %} {% load mezzanine_tags i18n %} {% block meta_title %}{{ blog_post.title }}{% endblock %} {% block meta_keywords %}{% spaceless %} {% for keyword in blog_post.keywords.all %} {% if not forloop.first %}, {% endif %} {{ keyword }} {% endfor %} {% endspaceless %}{% endblock %} {% block meta_description %}{{ blog_post.description }}{% endblock %} {% block title %}{{ blog_post.title }}{% endblock %} {% block extra_head %} {% endblock %} {% block main %} {% with blog_post.user as author %} {{ author.get_full_name|default:author.username }} {% endwith %} {{ blog_post.publish_date|timesince }} {% trans "ago" %} {{ blog_post.content|safe }} {% with blog_post.keywords.all as tags %} {% if tags %}
{% trans "Tags" %}:
{% endif %} {% endwith %}
{% set_short_url_for blog_post %} {% trans "Share this on:" %} Twitter / Facebook
{% if use_disqus %} {% include "blog/includes/disqus_comments.html" %} {% else %} {% include "blog/includes/comments.html" %} {% endif %}
{% endblock %}