1
0
Fork 0
mirror of synced 2024-09-30 09:06:19 +13:00
ArchiveBox/archivebox/templates/core/minimal_index.html

31 lines
802 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2021-01-19 03:38:19 +13:00
<head>
<title>Archived Sites</title>
<meta
charset="utf-8"
name="viewport"
content="width=device-width, initial-scale=1"
/>
</head>
<body data-status="{{status}}">
<table id="table-bookmarks">
<thead>
<tr class="thead-tr">
<th style="width: 100px">Bookmarked</th>
<th style="width: 26vw">Saved Link ({{num_links}})</th>
<th style="width: 50px">Files</th>
<th style="width: 16vw; whitespace: nowrap; overflow-x: hidden">
Original URL
</th>
</tr>
</thead>
<tbody>
{% for snapshot in snapshots %}
2021-01-30 23:51:39 +13:00
{% include "index_row.html" with snapshot=snapshot %}
2021-01-19 03:38:19 +13:00
{% endfor %}
</tbody>
</table>
</body>
</html>