We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd40d8a commit 27ba64aCopy full SHA for 27ba64a
templates/index.html
@@ -42,7 +42,7 @@ <h3 id="upcoming-meetings">Upcoming Meetings</h3>
42
43
{% set curr_time = now()|date(format="%s")|int %}
44
<ul class="titleList">
45
- {% for page in meetings_section.pages %}
+ {% for page in meetings_section.pages | reverse %}
46
{% set page_time = page.date|date(format="%s")|int %}
47
{% if page_time < curr_time %} {% continue %} {% endif %} <li>
48
<a href="{{ page.permalink | safe }}">{{page.date | date(format="%B %d")}} - {{ page.title }}</a>
0 commit comments