{% 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 %} {% trans "Home" context "Home page" %} {% endif %} {% endblock %} {% block blog_content_block %} {% if category %} {% if category == 'misc' %}
{% trans 'Important post' %}
{% 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 %}
{% 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 %}