{% extends "base.html" %}

{% block title %}Conference archive{% endblock %}

  {% block content %}
  <div class="container">
    <div class="row">
    <h1>Conference archive</h1>

    {% for person, count, wikidata_hits in items %}
    <div>
      <h4><a href="{{ url_for("person", person_id=person.id) }}">{{ person.name }}</a> ({{ count }})</h4>
      <ul>
      {% for hit in wikidata_hits %}
        <li>
          <a href="https://www.wikidata.org/wiki/{{ hit.qid }}">{{ hit.qid }}</a>
          {{ hit.label }} &mdash; {{ hit.description }}
        </li>
      {% endfor %}
      </ul>

    </div>
    {% endfor %}

  </div>
  </div>
{% endblock %}

{% block style %}
<style>
.searchmatch { background: lightgreen }
</style>
{% endblock %}