{% extends "mobile/blog/blog_post_list.html" %} {% load mezzanine_tags comment_tags keyword_tags i18n %} {% block meta_title %}{{ blog_post.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 %} {% 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 %} {% blocktrans with sometime=blog_post.publish_date|timesince %}{{ sometime }} ago{% endblocktrans %}

{% editable blog_post.content %} {{ blog_post.content|richtext_filters|safe }} {% endeditable %} {% keywords_for blog_post as tags %} {% if tags %}
{% trans "Tags" %}:
{% endif %} {% set_short_url_for blog_post %} {% if blog_post.allow_comments %}{% comments_for blog_post %}{% endif %} {% endblock %}