website/www/conservancy/templates/blog/entry_archive_day.html
Brett Smith 88474ec876 blog: Display tags with dateline.
This hopefully makes it a little clearer which entry the tags apply to.
2016-11-17 09:53:50 -05:00

18 lines
829 B
HTML

{% extends "base_blog.html" %}
{% block subtitle %}Conservancy Blog Archive: {{ day|date:"F j, Y" }} - {% endblock %}
{% block content %}
<h2>Conservancy Blog Archive: {{ day|date:"F j, Y" }}</h2>
{% for object in object_list %}
<h3><a href="{{ object.get_absolute_url }}">{{ object.headline|safe }}</a></h3>
{{ object.summary|safe }}
<p><span class="continued"><a href="{{ object.get_absolute_url }}">Read More...</a></span></p>
<p class="date small">Posted by <strong>{{ object.author.formal_name }}</strong> on {{ object.pub_date|date:"F j, Y" }}
{% if object.tags.all %}<span class="blog-tags">/ Tags: {% for tag in object.tags.all %}<a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</span>{% endif %}
</p>
{% endfor %}
{% endblock %}