2021-01-29 03:28:10 +00:00
|
|
|
{% load admin_urls %}
|
2020-08-27 01:42:47 +00:00
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>Archived Sites</title>
|
|
|
|
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
2021-01-29 03:28:10 +00:00
|
|
|
<link rel="stylesheet" href="{% static 'admin/css/base.css' %}">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'admin.css' %}">
|
2020-08-27 01:42:47 +00:00
|
|
|
<link rel="stylesheet" href="{% static 'bootstrap.min.css' %}">
|
|
|
|
<link rel="stylesheet" href="{% static 'jquery.dataTables.min.css' %}" />
|
|
|
|
{% block extra_head %}
|
|
|
|
{% endblock %}
|
|
|
|
<script src="{% static 'jquery.min.js' %}"></script>
|
|
|
|
<script src="{% static 'jquery.dataTables.min.js' %}"></script>
|
|
|
|
<script>
|
|
|
|
document.addEventListener('error', function (e) {
|
|
|
|
e.target.style.opacity = 0;
|
|
|
|
}, true)
|
|
|
|
jQuery(document).ready(function () {
|
|
|
|
jQuery('#table-bookmarks').DataTable({
|
|
|
|
searching: false,
|
|
|
|
paging: false,
|
|
|
|
stateSave: true, // save state (filtered input, number of entries shown, etc) in localStorage
|
|
|
|
dom: '<lf<t>ip>', // how to show the table and its helpers (filter, etc) in the DOM
|
|
|
|
order: [[0, 'desc']],
|
|
|
|
iDisplayLength: 100,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<base href="{% url 'Home' %}">
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-01-29 03:28:10 +00:00
|
|
|
<div id="container">
|
|
|
|
<div id="header">
|
|
|
|
<div id="branding">
|
|
|
|
<h1 id="site-name">
|
2021-02-16 01:50:12 +00:00
|
|
|
<a href="{% url 'public-index' %}" class="header-archivebox">
|
2021-01-29 03:28:10 +00:00
|
|
|
<img src="{% static 'archive.png' %}" alt="Logo" style="height: 30px"/>
|
|
|
|
ArchiveBox
|
2020-08-27 01:42:47 +00:00
|
|
|
</a>
|
2021-01-29 03:28:10 +00:00
|
|
|
</h1>
|
|
|
|
</div>
|
2021-04-06 03:22:05 +00:00
|
|
|
{% include 'navigation.html' %}
|
|
|
|
|
2020-08-27 01:42:47 +00:00
|
|
|
</div>
|
2021-01-29 03:28:10 +00:00
|
|
|
<div id="content" class="flex">
|
|
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
2021-01-29 04:15:05 +00:00
|
|
|
{% block footer %}
|
|
|
|
<footer>
|
|
|
|
<br />
|
|
|
|
<center>
|
|
|
|
<small>
|
|
|
|
Archive created using <a href="https://github.com/ArchiveBox/ArchiveBox" title="Github">ArchiveBox</a> version
|
2021-02-16 02:06:56 +00:00
|
|
|
<a href="https://github.com/ArchiveBox/ArchiveBox/releases/tag/v{{VERSION}}" title="Releases">v{{VERSION}}</a>.
|
2021-01-29 04:15:05 +00:00
|
|
|
<br/><br/>
|
|
|
|
{{FOOTER_INFO}}
|
|
|
|
</small>
|
|
|
|
</center>
|
|
|
|
<br />
|
|
|
|
</footer>
|
|
|
|
{% endblock %}
|
2021-01-29 03:28:10 +00:00
|
|
|
</div>
|
2020-08-27 01:42:47 +00:00
|
|
|
</body>
|
|
|
|
|
2020-11-12 15:57:31 +00:00
|
|
|
</html>
|