{% extends "index-base.html" %} {% block inner_content %}
{% for post in posts %} {% set idx_item = loop.index0 %} {% set stats = post_stats[post.path] %}
{{ stats['distinct_views'] }}  {{ stats['total_likes']}}  {{ stats['total_comments']}}
  • {{ format_authors(post.authors)|safe }}
  • Updated: {{ post['updated_at'].date().isoformat() }}
  • {% for tag_obj in post.tags %} {% set tag = tag_obj.name %} {% set tag_flat = tag.replace("/", "__") %} {{ "#" + tag}} {% endfor %}

{{ post['tldr']|safe }}

Read post

{% endfor %} {% endblock %} {% block scripts %} {{ super () }} {% endblock %}