{% extends 'weblog/weblog.html' %} {% load i18n %} {% block title_block %} {% if category %} {% if category == 'misc' %} {% trans 'Uncategorized' context 'Posts without category' %} {% else %} {{ category.name }} {% endif %} {% else %} {{ blog_title }} {% endif %} {% endblock %} {% block blog_content_block %} {% if category %} {% if category == 'misc' %}

{% trans 'Uncategorized posts' context 'Uncategorized page title' %}

{% else %}

{% blocktrans with category_name=category.name context 'Posts in category' %}Posts in {{ category_name }}{% endblocktrans %}

{% endif %} {% else %}

{{ blog_title }}

{% endif %} {% if posts %} {% for post in posts %}

{{ post.title }}

{% blocktrans with publish_date=post.publish_date %}Published on {{ publish_date }}{% endblocktrans %}{% if post.author %}{% blocktrans with author=post.author context 'Written by (Author)' %}, by {{ author }}{% endblocktrans %}{% endif %}


{% if post.preview_image %}{% endif %} {{ post.preview_text|safe }}
{% trans 'Read more...' %}
{% endfor %} {% if last_page > 1 %} {% endif %} {% else %}

{% trans 'Nothing has been posted yet.' %}

{% endif %} {% endblock %}