2021-02-21 16:37:27 +00:00
|
|
|
{% extends "_page.twig" %}
|
|
|
|
|
|
|
|
{% block title %}Latest hosts{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="latest-hosts">
|
|
|
|
|
|
|
|
<p class="important title" align="center">
|
|
|
|
Latest added domains
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<table class="table">
|
|
|
|
<thead class="table__head">
|
|
|
|
<tr class="table__row">
|
|
|
|
<th class="table__cell">Domain</th>
|
2021-04-10 23:25:28 +00:00
|
|
|
<th class="table__cell"><abbr title="Address Helper">AH</abbr></th>
|
|
|
|
<th class="table__cell"><abbr title="Base32 address">B32</abbr></th>
|
2021-04-08 11:12:50 +00:00
|
|
|
<th class="table__cell table__cell_full-b32">Full Base32</th>
|
2022-06-06 17:57:49 +00:00
|
|
|
<th class="table__cell table__cell_date"><abbr title="Hover to see last seen time">Added (UTC)</abbr></th>
|
2021-02-21 16:37:27 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="table__body">
|
|
|
|
{% for host in hosts %}
|
|
|
|
<tr class="table__row">
|
2021-06-13 04:55:08 +00:00
|
|
|
{% if host.host|length > 24 %}
|
|
|
|
<td class="table__cell table__cell_long-ass"><a href="http://{{ host.host }}/" rel="external nofollow noopener noreferrer" target="_blank">{{ host.host|slice(0, 23) }}…</a></td>
|
|
|
|
{% else %}
|
|
|
|
<td class="table__cell table__cell_long-ass"><a href="http://{{ host.host }}/" rel="external nofollow noopener noreferrer" target="_blank">{{ host.host }}</a></td>
|
|
|
|
{% endif %}
|
2021-04-10 23:25:28 +00:00
|
|
|
<td class="table__cell table__cell_center-bold"><a href="http://{{ host.host }}/?i2paddresshelper={{ host.base64 }}" rel="external nofollow noopener noreferrer" target="_blank">A</a></td>
|
|
|
|
<td class="table__cell table__cell_center-bold"><a href="http://{{ host.base32 }}.b32.i2p/" rel="external nofollow noopener noreferrer" target="_blank">B</a></td>
|
2021-07-15 22:37:33 +00:00
|
|
|
<td class="table__cell table__cell_full-b32 table__cell_long-ass">{{ host.base32 }}</td>
|
|
|
|
<td class="table__cell table__cell_date" title="{{ host.last_seen }}">{{ host.add_date }}</td>
|
2021-02-21 16:37:27 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|