{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Latest news" %}{% endblock %}
{% block header %}{% trans "Latest news" %}{% endblock %}
{% block main %}
{% for entry in latest %}
{{ entry.title }}
{% 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/widgets/latest.html" with object_list=latest_entries %} {% endblock sidebar %}