+ {% assign unique_dates = "" | split: "" %}
+ {% assign now = "now" | date: "%Y-%m-%d 00:00:00" | date: "%s" | plus: 0 %}
+ {% for meetup in meetups %}
+ {% assign date = meetup.date | date: "%s" | plus: 0 %}
+ {% if date >= now %}
+ {% assign formatted_date = meetup.date | date: "%Y%m" %}
+ {% unless unique_dates contains formatted_date %}
+
+ {{ meetup.date | date: "%B %Y" }}
+
+ {% assign unique_dates = unique_dates | push: formatted_date %}
+ {% endunless %}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+
\ No newline at end of file
diff --git a/meetups/index.html b/meetups/index.html
index 598fc79a..5a196fdd 100644
--- a/meetups/index.html
+++ b/meetups/index.html
@@ -5,6 +5,7 @@