diff --git a/ebpub/ebpub/templates/db/snippets/newsitem_list.html b/ebpub/ebpub/templates/db/snippets/newsitem_list.html index eb4c2b90..7de371da 100644 --- a/ebpub/ebpub/templates/db/snippets/newsitem_list.html +++ b/ebpub/ebpub/templates/db/snippets/newsitem_list.html @@ -3,8 +3,34 @@ {% for newsitem in newsitem_list %}
  • - {% if location_url != "" %}{% endif %}{{ newsitem.location_name }}{% if location_url != "" %}{% endif %} - {{ newsitem.title|truncatewords_html:20 }} -

    {{ newsitem.item_date|date:"F j, Y" }} {% if newsitem.description %}{{ newsitem.description|truncatewords_html:20}}{% endif %}

    +
    + + {{ newsitem.item_date|date:"M" }} + {{ newsitem.item_date|date:"d" }} +
    +
    + + + {{ newsitem.title|truncatewords_html:20|default:"Unknown" }} + + + + {% if location_url != "x" %}{% endif %}@{{ newsitem.location_name }}{% if location_url != "x" %}{% endif %} + +
    + + {% if newsitem.description %} + + {{ newsitem.description|truncatewords_html:20}} + More + {% endif %} +
  • {% endfor %}