{% extends 'base.html.twig' %} {% block content %}

Joe Carstairs' blog

{% if years %} {% endif %} {% for year in years %}

{{ year }}

{% for month in months[year] %}

{{ monthNames[month] }}

{% for post in posts[year][month] %}

{{ post.title }}

Added:

{% if post.updatedDate %}

Updated:

{% endif %}
{% apply markdown_to_html %} {{ post.description|markdown_to_html|striptags('

')|html_to_markdown }} {% endapply %}

{% endfor %} {% endfor %} {% else %}

I have no blog posts.

{% endfor %}
{% endblock %}