{% 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 extra_head %} {% endblock %} {% block breadcrumb_menu %}
{% 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" %} ({% spaceless %} {% blocktrans count blog_post.num_comments as num_comments %} 1 comment {% plural %} {{ num_comments }} comments {% endblocktrans %} {% endspaceless %})

{% 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 %} {% trans "Share this on:" %} Twitter / Facebook
{% if use_disqus %} {% include "blog/includes/disqus_comments.html" %} {% else %} {% include "blog/includes/comments.html" %} {% endif %}
{% endblock %}