2024-02-19 16:24:17 +01:00
|
|
|
{% extends "main.html" %}
|
|
|
|
|
|
|
|
{% from 'bootstrap5/utils.html' import render_messages %}
|
|
|
|
|
|
|
|
{% block title %}Favicon: {{ favicon_sha512 }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<center>
|
|
|
|
<h2>{{ favicon_sha512 }}</h2>
|
|
|
|
<img src="data:image/ico;base64,{{ b64_favicon }}" style="width:32px;height:32px;"/>
|
|
|
|
</center>
|
|
|
|
<p>The same favicon was seen in these captures:</p>
|
|
|
|
<ul>
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table id="table" class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Capture Title</th>
|
2024-02-19 22:30:43 +01:00
|
|
|
<th>Landing page</th>
|
2024-02-19 16:24:17 +01:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2024-02-19 22:30:43 +01:00
|
|
|
{% for capture_uuid, title, landing_page in captures %}
|
2024-02-19 16:24:17 +01:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{{ url_for('tree', tree_uuid=capture_uuid) }}">
|
|
|
|
{{ title }}
|
|
|
|
</a>
|
|
|
|
</td>
|
2024-02-19 22:30:43 +01:00
|
|
|
<td>
|
|
|
|
{{landing_page}}
|
|
|
|
</td>
|
2024-02-19 16:24:17 +01:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|