{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block title %}{{ article.title|striptags }} - {{ SITENAME|striptags }}{% endblock %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block content %}

{{ article.title }} #

{% if article.series %}

This post is part {{ article.series.index }} of the "{{ article.series.name }}" series:

    {% for part_article in article.series.all %}
  1. {{ part_article.title }}
  2. {% endfor %}
{% endif %}
{{ article.content }}
{% if article.category %}

Category

{% endif %} {% if article.tags %}

Tags

{% endif %}
{% if article.category %}

{{ article.category }}

{% endif %} {% if article.tags %}

{% for tag in article.tags %} {{ tag }}{{"," if not loop.last }} {% endfor %}

{% endif %}
{% if article.share_post and article.status != 'draft' %}

Share this post on Bluesky, Mastodon, Reddit, Hacker News or Twitter.

{% endif %}

{% endblock %}