{% extends "journal/base.html" %} {% load comments %} {% block title %}Journal Entries{% endblock %} {% block content %}
This page has an RSS feed.
See also artifacts, microentries.
{% if object_list %} {% for item in object_list %} {% get_comment_count for item as comment_count %}

{% if item.title %}{{item.title}}{%else%}[Untitled]{%endif%}

{{item.date|date:"D, d/m/Y @H:i"}} by {{ item.author.username }}. {{ comment_count }} comments

{{ item.html_content|truncatewords_html:256 }}

{% endfor %} {% else %}

No entries have been entered yet!

{% endif %} {% if is_paginated %} {% if has_previous %} « previous | {% endif %} {% if has_next %} next » {% endif %} {% endif %} {% endblock %}