{% extends "base.html" %} {% set active_nav = "topics" %} {% block title %}Topics - Distill{% endblock %} {% block content %}

Topics

{{ topics|length }} topics in your library

{% for t in topics %}
{{ t.name }}
{{ t.channel_count }} channels · {{ t.video_count }} videos
{% if t.site_count %}{{ t.site_count }} sites · {% endif %} {% if t.paper_count %}{{ t.paper_count }} papers · {% endif %} {% if t.has_synthesis %}synthesis {% endif %} {% if t.has_report %}report {% endif %} {% if t.has_brief %}brief {% endif %}
{% else %}

No topics yet. Run distill channel or distill latest to get started.

{% endfor %}
{% endblock %}