Skip to content

Commit e100b38

Browse files
committed
Show day of month on /YYYY/ page
1 parent 8f6b278 commit e100b38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/archive_year.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h2 class="archive-h2">Archive for {{ year }}</h2>
1212
{% if month.entries %}
1313
<ul>
1414
{% for entry in month.entries %}
15-
<li><a href="{{ entry.get_absolute_url }}">{{ entry }}</a></li>
15+
<li>{{ entry.created|date:"jS" }}: <a href="{{ entry.get_absolute_url }}">{{ entry }}</a></li>
1616
{% endfor %}
1717
</ul>
1818
{% endif %}

0 commit comments

Comments
 (0)