{% extends "base.html" %} {% block title %}{{ page.title | markdown | striptags | trim }}{% endblock %} {% block description %}{{ page.description }}{% endblock %} {% block metadata %} {% endblock %} {% block content %}

{{ page.title | markdown(inline=true) | safe }}

{{ page.content | safe }} {% set posts = get_section(path="posts/_index.md") -%} {% set talks = get_section(path="talks/_index.md") -%} {% set micros = get_section(path="micro/_index.md") -%} {% set updates = posts.pages | concat(with=talks.pages) | concat(with=micros.pages) | filter(attribute="extra.project", value=page.title) -%} {%- if updates %}

Updates

{% for year, by_year in updates | group_by(attribute="year") %}
{{ year }}
{% for update in by_year %}
{{ update.title | markdown(inline=true) | safe }}{% if update.date %}, {{ update.date | date(format="%B %-d, %Y") }}{% endif %}
{% endfor %} {% endfor %}
{% endif %}
{% endblock %}