{% extends "base.html" %} {% load i18n mezzanine_tags blog_tags keyword_tags disqus_tags %} {% block meta_title %}{{ blog_page.title }}{% endblock %} {% block meta_keywords %}{% metablock %} {% keywords_for blog_page as keywords %} {% for keyword in keywords %} {% if not forloop.first %}, {% endif %} {{ keyword }} {% endfor %} {% endmetablock %}{% endblock %} {% block meta_description %}{% metablock %} {{ blog_page.description }} {% endmetablock %}{% endblock %} {% block title %} {% editable blog_page.title %}{{ blog_page.title }}{% endeditable %} {% endblock %} {% block main %} {% if tag or category or year or month or author %}

{% if tag %} {% trans "Viewing posts tagged" %} {{ tag }} {% else %}{% if category %} {% trans "Viewing posts for the category" %} {{ category }} {% else %}{% if year or month %} {% trans "Viewing posts from" %} {% if month %}{{ month }}, {% endif %} {{ year }} {% else %}{% if author %} {% trans "Viewing posts by" %} {{ author.get_full_name|default:author.username }} {% endif %}{% endif %}{% endif %}{% endif %}

{% else %} {% editable blog_page.content %} {{ blog_page.content|safe }} {% endeditable %} {% endif %} {% for blog_post in blog_posts.object_list %} {% editable blog_post.title blog_post.publish_date %}

{{ blog_post.title }}

{% trans "Posted by" %}: {% with blog_post.user as author %} {{ author.get_full_name|default:author.username }} {% endwith %} {% if blog_post.category_list %} {% trans "in" %} {% for category in blog_post.category_list %} {{ category }} {% endfor %} {% endif %} {{ blog_post.publish_date|timesince }} {% trans "ago" %} {% endeditable %} {% editable blog_post.content %} {{ blog_post.description_from_content|safe }} {% endeditable %}

{% if blog_post.keyword_list %} {% trans "Tags" %}: {% for tag in blog_post.keyword_list %} {{ tag }} {% endfor %}
{% endif %} {% trans "read more" %} / {% if settings.COMMENTS_DISQUS_SHORTNAME %} {% trans "Comments" %} {% else %} {% blocktrans count blog_post.comments_count as comments_count %} 1 comment {% plural %} {{ comments_count }} comments {% endblocktrans %} {% endif %}

{% endfor %} {% pagination_for blog_posts %} {% if settings.COMMENTS_DISQUS_SHORTNAME %} {% include "generic/includes/disqus_counts.html" %} {% endif %} {% endblock %} {% block right_panel %} {% include "blog/includes/filter_panel.html" %} {% endblock %}