Skip to content

Latest commit

 

History

History
69 lines (60 loc) · 2.64 KB

meetings.md

File metadata and controls

69 lines (60 loc) · 2.64 KB
layout title
textpage
Meetings

{% assign files = site.static_files | where_exp: "item", "item.path contains 'assets/meetings'" %}

{% assign months = "January,February,March,April,May,June,July,August,September,October,November,December" | split: "," %}

{% assign paths = "" | split: ',' %}

{% for file in files %} {% assign paths = paths | push: file.path %} {% endfor %}

{% assign ps = "" | split: ',' %} {% assign ys = "" | split: ',' %}

{% for path in paths %} {% capture p %}{{ path | remove: "/assets/meetings/" | slice: 0, 7 }}{% endcapture %} {% capture y %}{{ path | remove: "/assets/meetings/" | slice: 0, 4 }}{% endcapture %} {% assign ps = ps | push: p | uniq %} {% assign ys = ys | push: y | uniq %} {% endfor %}

CSS Committee Meetings

{% for y in ys reversed %}

{{y | slice: 0, 4}}

{% for p in ps reversed %} {% if p contains y %} {% assign m = p | slice: 5, 7 %} {% assign n = m | plus: -1 %}

{{ months[n] }}

{% endif %} {% endfor %} {% endfor %}