{% extends "blog/blog_post_list.html" %} {% load mezzanine_tags i18n %} {% block meta_title %}{{ blog_post.title }}{% endblock %} {% block meta_keywords %}{% metablock %} {% for keyword in blog_post.keywords.all %} {% if not forloop.first %}, {% endif %} {{ keyword }} {% endfor %} {% endmetablock %}{% endblock %} {% block meta_description %}{% metablock %} {{ blog_post.description }} {% endmetablock %}{% endblock %} {% block title %} {% editable blog_post.title %}{{ blog_post.title }}{% endeditable %} {% endblock %} {% block main %}

{% trans "Posted by" %} {% with blog_post.user as author %} {{ author.get_full_name|default:author.username }} {% endwith %} {{ blog_post.publish_date|timesince }} {% trans "ago" %}

{% editable blog_post.content %} {{ blog_post.content|safe }} {% endeditable %} {% with blog_post.keywords.all as tags %} {% if tags %}
{% trans "Tags" %}:
{% endif %} {% endwith %} {% set_short_url_for blog_post %} {% if use_disqus %} {% include "blog/includes/disqus_comments.html" %} {% else %} {% include "blog/includes/comments.html" %} {% endif %} {% endblock %}