{% extends "base.html" %} {% block title %}{{ post.name }}{% endblock %} {% block head %}{% endblock %} {% block breadcrumb %}
  • posts
  • {{ post.slug }}
  • {% endblock %} {% block content %} {% match post.edited_at %} {% when Some with (x) %} {% when None %} {% endmatch %}
    Published at {{ post.published_at }}
    Edited at {{ x }}
    Tags
      {% for tag in post.tags %}
    • {{ tag }}
    • {% endfor %}
    {{ post.content|safe }}
    {% endblock %}