{% extends "base.html" %}

{% block content %}
<div class="m-3">
  <ol>
    {% for enwiki, count in articles %}
    <li>
      <a href="{{ url_for("article_page", enwiki=enwiki) }}">{{ enwiki }}
      ({{ count }} links)
    </li>
    {% endfor %}
  </ol>
</div>
{% endblock %}