{% extends "home.html" %} {% block opengraph %} {% if posts | length > 1 %} {% else %} {% endif %} {% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

News and views

{% for p in posts[:1] %}

{{ p.title }}

Published on {{ p.date.strftime('%A, %d %B, %Y') }}
Tags: {% for t in p.tags %} {{ t }}{% if t != p.tags[-1] %}, {% endif %} {% endfor %}

{{ p.html|safe }}

Comments

{% set host = 'social.skewed.de' %} {% set username = 'tiago' %} {% set id = p.m_id %}

You can also use your Mastodon account to comment on this post by replying to this thread. To see the existing comments, press the button below.

{% endfor %} {% if posts | length > 1 %}

Older posts

{% endif %} {% for p in posts[1:] %}

{{ p.title }}

Published on {{ p.date.strftime('%A, %d %B, %Y') }}
{% endfor %}
{% endblock %} {% block right_sidebar %}

All posts

{% for p in all_posts %}

{{ p.title }}

Published on {{ p.date.strftime('%A, %d %B, %Y') }}
{% endfor %} {% endblock %}