{% extends "blog/blog_post_list.html" %} {% load mezzanine_tags comment_tags keyword_tags rating_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.comments_count as comments_count %} 1 comment {% plural %} {{ comments_count }} comments {% endblocktrans %} {% endspaceless %})

{% editable blog_post.content %} {{ blog_post.content|safe }} {% endeditable %} {% keywords_for blog_post as tags %} {% if tags %}
{% trans "Tags" %}:
{% endif %}
{% rating_for blog_post %}
{% set_short_url_for blog_post %} {% trans "Share this on" %}: Twitter / Facebook
{% if use_disqus %} {% include "generic/includes/disqus_comments.html" %} {% else %} {% comments_for blog_post %} {% endif %}
{% endblock %}