{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Latest news" %}{% endblock %} {% block header %}{% trans "Latest news" %}{% endblock %} {% block main %}

{% trans "Blog archive" %}

{% for entry in latest %}

{{ entry.title }}

{{ entry.user.get_full_name|default:entry.user }},
{{ entry.body_html|truncatewords_html:100|safe }}

{% trans "Read on →" %}

{% empty %}

{% trans "No entries yet" %}

{% trans "This blog is really empty, but this placeholder is used instead, to give you an impression of what this page will look like." %}

{% endfor %}
{% endblock main %} {% block sidebar %} {% load blog_tags %} {% latest_entries 5 %} {% include "samklang_blog/latest_entries.html" with object_list=latest_entries %} {% endblock sidebar %} {% block context_menu %} {% if request.user.is_authenticated %}
  • {% trans "New" %}
  • {% endif %} {% endblock %}