1
0
Fork 0
mirror of synced 2024-06-29 11:30:46 +12:00
ArchiveBox/templates/index.html

91 lines
3 KiB
HTML
Raw Normal View History

2017-05-05 21:00:30 +12:00
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Archived Sites</title>
<style>
html, body {
2017-05-05 21:00:30 +12:00
width: 100%;
height: 100%;
font-size: 20px;
font-weight: 200;
text-align: center;
margin: 0px;
padding: 0px;
font-family: "Gill Sans", Helvetica, sans-serif;
}
header {
2017-05-05 21:00:30 +12:00
background-color: #aa1e55;
color: white;
padding: 10px;
}
header h1 {
2017-05-05 21:00:30 +12:00
font-weight: 300;
color: black;
margin-top: 10px;
margin-bottom: 12px;
}
header h1 small {
2017-05-05 21:00:30 +12:00
color: white;
font-size:0.5em;
}
header h1 small a {
2017-05-05 21:00:30 +12:00
text-decoration: none;
color: orange;
opacity: 0.6
font-weight: 300;
}
header h1 small a:hover {
2017-05-05 21:00:30 +12:00
opacity: 1;
}
table {
2017-05-05 21:00:30 +12:00
padding: 6px;
width: 100%;
}
table thead th {
2017-05-05 21:00:30 +12:00
font-weight: 400;
}
tbody tr:nth-child(odd) {
2017-05-05 21:00:30 +12:00
background-color: #ffebeb;
}
table tr td {
2017-05-05 21:00:30 +12:00
white-space: nowrap;
overflow: hidden;
padding-bottom: 0.4em;
padding-top: 0.4em;
padding-left: 2px;
}
table tr td img {
2017-05-05 21:00:30 +12:00
height: 24px;
padding: 0px;
padding-right: 5px;
text-indent: -10000px;
}
2017-05-05 21:00:30 +12:00
</style>
</head>
<body>
<header>
<h1 title="Last modified $time_updated">
2017-05-05 21:00:30 +12:00
<img src="https://nicksweeting.com/images/archive.png" height="36px">
Archived Sites <img src="https://getpocket.com/favicon.ico" height="36px"> <br/>
<small>
2017-10-23 22:58:41 +13:00
<a href="https://github.com/pirate/bookmark-archiver">Bookmark Archiver</a>
2017-05-05 21:00:30 +12:00
</small>
</h1>
</header>
<table style="width:100%;height: 90%; overflow-y: scroll;table-layout: fixed">
<thead>
<tr>
2017-07-06 10:15:17 +12:00
<th style="width: 120px;"><img src="https://getpocket.com/favicon.ico" height="12px"> Bookmarked</th>
<th style="width: 45vw;">Saved Articles ($num_links)</th>
2017-05-05 21:00:30 +12:00
<th style="width: 50px">Files</th>
<th style="width: 50px">PDF</th>
<th style="width: 60px;font-size:0.8em;">Screenshot</th>
<th style="width: 50px">A.org</th>
2017-05-05 21:00:30 +12:00
<th style="width: 100px;whitespace:nowrap;overflow-x:scroll;display:block">Original URL</th>
</tr>
</thead>
<tbody>$rows</tbody>
2017-05-05 21:00:30 +12:00
</table>
</body>
</html>