{% extends "base.html" %} {% block title %}{{ tag }}{% if current_page > 1 %} (Page {{ current_page }}){% endif %} — Proof Engine{% endblock %} {% block meta_description %}{{ total }} verified proofs tagged '{{ tag }}'{% if current_page > 1 %} (Page {{ current_page }}){% endif %} — Proof Engine{% endblock %} {% block content %}

tag: {{ tag }}

{{ total }} proof{{ "s" if total != 1 }}

{% for proof in proofs %}

{{ proof.proof_data.claim_natural }}

{{ proof.verdict.raw }} {% for t in proof.tags %} {{ t }} {% endfor %} {{ proof.date }}
{% if proof.source_names %}
Sources: {{ proof.source_names | join(', ') }}{% if proof.source_names_extra > 0 %} +{{ proof.source_names_extra }} more{% endif %}
{% endif %}
{% endfor %} {% if total_pages > 1 %} {% endif %} {% endblock %}