{% extends "base.html" %} {% block title %}Themes · Wordsmith{% endblock %} {% block content %} {% set total_words = themes|map(attribute='words')|map('length')|sum %}
№ 02 · Ledger

Themes

{{ themes|length }} theme{{ '' if themes|length == 1 else 's' }} · {{ total_words }} word{{ '' if total_words == 1 else 's' }} on file
+ New theme

{% if themes %}
{% for t in themes %} {% endfor %}
Name Slug Words
{{ t.name }} {{ t.slug }} {{ t.words|length }} edit
{% else %}

No themes yet. Create the first one.

{% endif %}
{% endblock %}