{% extends "base.html" %}

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

  {% block content %}
  <h1>Conference archive</h1>

  <p>{{ items | count }} matches found</p>
    {% for person, qid, wd_name, photo in items %}
    <div>
      <a href="{{ url_for("person", person_id=person.id) }}">{{ person.name }}</a>
      ##
      <a href="https://www.wikidata.org/wiki/{{ qid }}">{{ wd_name }} ({{ qid }})</a>
      {% if photo %}📷{% endif %}
    </div>
    {% endfor %}

{% endblock %}

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