|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>%(page)s - %(pagenum)s - %(title)s</title>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
|
|
|
<script>
|
|
|
|
$(function(){
|
|
|
|
$('.clickable').click(function(){
|
|
|
|
window.location = $(this).data('url');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>%(title)s</h1>
|
|
|
|
<a href="%(index)s" class="back"><< back to index</a>
|
|
|
|
<div class="main">
|
|
|
|
<h2>%(page)s</h2>
|
|
|
|
<h3>%(pagenum)s</h3>
|
|
|
|
|
|
|
|
<div class="navigation">
|
|
|
|
Sorting:
|
|
|
|
<a href="index_date_desc_0.html">new to old</a>;
|
|
|
|
<a href="index_date_asc_0.html">old to new</a>;
|
|
|
|
<a href="index_from_asc_0.html">by sender, ascending</a>;
|
|
|
|
<a href="index_from_desc_0.html">by sender, descending</a>;
|
|
|
|
<a href="index_to_asc_0.html">by recipient, ascending</a>;
|
|
|
|
<a href="index_to_desc_0.html">by recipient, descending</a>;
|
|
|
|
<a href="index_subject_asc_0.html">by subject, ascending</a>;
|
|
|
|
<a href="index_subject_desc_0.html">by subject, descending</a>;
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="message message-list">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th class="hash">SHA1 hash</th>
|
|
|
|
<th class="from">From</th>
|
|
|
|
<th class="to">To</th>
|
|
|
|
<th class="subject">Subject</th>
|
|
|
|
<th class="date">Date</th>
|
|
|
|
<th class="attachments">Att.</th>
|
|
|
|
</tr>
|
|
|
|
%(items)s
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|