We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62ec02a commit 48ca252Copy full SHA for 48ca252
1 file changed
site/archive.html
@@ -90,7 +90,8 @@ <h1 id="past-events-title">Archival Schools</h1>
90
To view schools from a particular year, click on the year below to expand the archive.
91
<br>
92
93
- {% for year in (2018..2024) reversed %}
+ {% assign archive_years = site.data.archive | map: 'year' | uniq | sort | reverse %}
94
+ {% for year in archive_years %}
95
<div class="panel-heading" style="background-color: #f7f7f7; padding: 10px; border-radius: 5px; margin-bottom: 10px; border: 1px solid #ccc;">
96
<h2 class="panel-title">
97
<a data-toggle="collapse" href="#collapse{{ year }}"> {{ year }} Schools</a>
0 commit comments