diff --git a/_layouts/other.html b/_layouts/other.html
index 5b6da55..63a0b27 100644
--- a/_layouts/other.html
+++ b/_layouts/other.html
@@ -3,17 +3,23 @@
---
{% assign sorted = site.github.public_repositories %}
-
+{% assign thisyear = site.conference.dates | last | date: "%Y" | to_integer %}
+
{{ page.title }}
{{ content }}
- {% for repository in sorted reversed %}{% if repository.has_pages %}{% unless repository.name contains 'github.io' %}{% if repository.name contains site.style %}
- -
- {{ site.style | upcase }} {{ repository.name | remove_first: site.style }} {{ repository.description }}
-
- {% endif %}{% endunless %}{% endif %}{% endfor %}
+ {% for repository in sorted reversed %}
+ {% assign year = repository.name | remove_first: site.style | to_integer %}
+ {% if repository.has_pages and repository.name contains site.style and thisyear > year %}
+ {% unless repository.name contains 'github.io' %}
+ -
+ {{ site.style | upcase | append: " " | append: year }} {{ repository.description }}
+
+ {% endunless %}
+ {% endif %}
+ {% endfor %}