{% extends 'base.htm' %} {% macro render_article_link(desc) %}
  • {{ desc.title }}
  • {% endmacro %} {% block content %}
    It has been
    {{ sb.num_days }}
    days

    Articles

    {% for d in sb.days %}

    {{ d.date }}

      {% for l in d.links %} {{ render_article_link(l) }} {% endfor %}
    {% if d.maybe_links|length > 0 %}
    and {{ d.maybe_links|length }} weak match(es)
      {% for l in d.maybe_links %} {{ render_article_link(l) }} {% endfor %}
    {% endif %}
    {% endfor %}
    {% endblock %}