{% extends "base.html" %} {% block title %}Blog Statistics - {{ site_title }}{% endblock %} {% block meta_tags %} {% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Statistics for {{ total_posts }} post{{ '' if total_posts == 1 else 's' }}.
{# ------------------------------------------------------------------ #} {# Helper macro: render a histogram as a CSS bar chart #} {# ------------------------------------------------------------------ #} {% macro histogram(title, labels, counts, label_step=1) %} {% set max_count = counts | max if counts | max > 0 else 1 %}| # | Days | Start Date | End Date | Posts |
|---|---|---|---|---|
| {{ loop.index }} | {{ streak.days }} | {{ streak.start_date.strftime('%Y-%m-%d') }} | {{ streak.end_date.strftime('%Y-%m-%d') }} | {{ streak.post_count }} |
| # | Domain | Links |
|---|---|---|
| {{ loop.index }} | {{ domain }} | {{ count }} |