Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 700 Bytes

authors.md

File metadata and controls

30 lines (23 loc) · 700 Bytes
layout title
default
Archive

MATSim News Archive

{% assign years = "2025|2024|2023|2022|2021|2020|2019" | split: "|" %} {% capture strnowyear %}{{'now' | date: '%Y'}}{% endcapture %} {% assign nowyear = strnowyear | plus: 0 %}

{% for stryear in years %} {% assign year = stryear | plus: 0 %} {% if year <= nowyear %}

{{year}}

{% for post in site.posts %} {% capture postyear %} {{post.date | date: '%Y'}}{% endcapture %} {% if postyear contains stryear %} [ {{ post.title }} ]({{ post.url }})
   » by {{ post.author }} on {{ post.date | date_to_string }}

{% endif %} {% endfor %}

{% endif %} {% endfor %}