Skip to content
This repository has been archived by the owner on Jan 27, 2022. It is now read-only.

Latest commit

 

History

History
51 lines (48 loc) · 1.61 KB

weekly.md

File metadata and controls

51 lines (48 loc) · 1.61 KB
layout title
default
Weeklies
{% capture my_include %}{% include intro-furore.md %}{% endcapture %} {{ my_include | markdownify }}
{% assign posts = site.furore | sort: 'date' | reverse %} {% assign lastyear = 0 %} {% assign lastweek = 0 %} {% for post in posts %} {% assign year = post.enddate | date: "%Y" %} {% assign hid = post.date | date: "%Y-%m-%d" %} {% if year != lastyear %}{{year}}: {% assign lastyear = year %}{% endif %} {% if post.week != lastweek %} {{post.week}} {% assign lastweek = post.week %} {% endif %} {% endfor %}

{% for post in posts %} {% if post.date != lastdate %} {% assign hid = post.date | date: "%Y-%m-%d" %}

{{ post.date | date: "%d %B %Y" }} - {{ post.enddate | date:" %d %B %Y" }} (Week #{{post.week}})
{% endif %} {% assign lastdate = post.date %}
{% assign author = site.authors | where:"uid",post.uid | first %} {% if author.photo %}
{% else %}
{% endif %} {% if author %}{{ author.fullname }}{% else %}TODO: {{ post.uid }}{% endif %}
{{ post.output }}

{% endfor %}