Skip to content

Commit 27ba64a

Browse files
reverse upcoming meetings (to show next one first)
1 parent fd40d8a commit 27ba64a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h3 id="upcoming-meetings">Upcoming Meetings</h3>
4242

4343
{% set curr_time = now()|date(format="%s")|int %}
4444
<ul class="titleList">
45-
{% for page in meetings_section.pages %}
45+
{% for page in meetings_section.pages | reverse %}
4646
{% set page_time = page.date|date(format="%s")|int %}
4747
{% if page_time < curr_time %} {% continue %} {% endif %} <li>
4848
<a href="{{ page.permalink | safe }}">{{page.date | date(format="%B %d")}} - {{ page.title }}</a>

0 commit comments

Comments
 (0)