{% extends "index-base.html" %} {% block header %} {{ top_header }} {% endblock %} {% block inner_content %}
{{ full_tag }}
{{ tag_description }}
POCs: {{ tag_pocs }}
All Posts with tag: {{ full_tag }}
{% for post in posts %} {% set idx_item = loop.index0 %} {% set stats = post_stats[post.path] %}
{{ stats['all_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 %}