Skip to content

Commit

Permalink
Update display_events.html
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlange6 authored Jan 8, 2024
1 parent e001a31 commit e35a4e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/display_events.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h4>Related Events</h4>
This will select events in the future. Instead we will take the last 5 events..
{% assign selected_events = all_events | where_day_range: "startdate", 6 | where_exp: "item", "item.skipfrontpage != true" | reverse %}
{% endcomment %}
{% assign selected_events = all_events | sort: "startdate" | where_exp: "item", "item.skipfrontpage != true" %}
{% assign selected_events = all_events | where_exp: "item", "item.skipfrontpage != true" %}

{% for event in selected_events limit:5 %}
<a href="{{event.meetingurl}}">
Expand Down

0 comments on commit e35a4e6

Please sign in to comment.