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

{{ topic.name }}

{{ topic.channel_count }} channels · {{ topic.video_count }} videos · {{ topic.site_count }} sites · {{ topic.paper_count }} papers

{% if synthesis %}{% endif %} {% if brief %}{% endif %} {% if sites %}{% endif %} {% if papers %}{% endif %}
{% for ch in topic.channels %}
{{ ch.name }}
{{ ch.url }}
{% else %}

No channels in this topic yet.

{% endfor %}
{% if synthesis %}
{{ synthesis|strip_frontmatter|markdown|safe }}
{% endif %} {% if brief %}
{{ brief|strip_frontmatter|markdown|safe }}
{% endif %} {% if sites %}
{% for site in sites %}
{{ site.name }}
{{ site.page_count }} pages
{% endfor %}
{% endif %} {% if papers %}
{% for paper in papers %}
{{ paper.title }}
{% endfor %}
{% endif %} {% endblock %}