{% extends "db/snippets/newsitem_list.html" %}
{% load eb %}
{% block newsitem_list_content %}
{{ newsitem.title|truncatewords_html:20 }}
{% featured_lookup_for_item newsitem "categories" %}
{% if categories %}
{% for category in categories %}{{ category.name }} {% if not forloop.last %},{% endif %} {% endfor %}
{% endif %}
{{ newsitem.item_date|date:"F j, Y" }} {% if newsitem.description %}{{ newsitem.description|truncatewords_html:20}}{% endif %}
{% endblock newsitem_list_content %}