Under recently edited, display edit date first, publish date after.

master
Ethan Dalool 2020-09-01 16:41:13 -07:00
parent 7ed03d8d79
commit 558f4cd422
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ def write_writing_index():
{% for article in articles_edited %} {% for article in articles_edited %}
{% if article.edited and article.edited != article.date %} {% if article.edited and article.edited != article.date %}
<li> <li>
<a href="{{article.web_path}}">{{article.date}} - {{article.title|e}} ({{article.edited}})</a> <a href="{{article.web_path}}">{{article.edited}} - {{article.title|e}} ({{article.date}})</a>
</li> </li>
{% endif %} {% endif %}
{% endfor %} {% endfor %}