You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.2 KiB
HTML
57 lines
2.2 KiB
HTML
<!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');
|
|
});
|
|
|
|
$('.jumplist').change(function(){
|
|
console.log($(this).children('option:selected'));
|
|
$(this).children('option:selected').each(function(){
|
|
window.location = $(this).val();
|
|
});
|
|
});
|
|
});
|
|
</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">
|
|
%(prev)s
|
|
<select class="jumplist">
|
|
%(pages)s
|
|
</select>
|
|
%(next)s
|
|
</div>
|
|
|
|
<table class="message message-list">
|
|
<tbody>
|
|
<tr>
|
|
<th class="hash">SHA1 <a href="index_hash_desc_0.html"><img src="up.png"></a><a href="index_hash_asc_0.html"><img src="down.png"></a></th>
|
|
<th class="from">From <a href="index_from_desc_0.html"><img src="up.png"></a><a href="index_from_asc_0.html"><img src="down.png"></a></th>
|
|
<th class="to">To <a href="index_to_desc_0.html"><img src="up.png"></a><a href="index_to_asc_0.html"><img src="down.png"></a></th>
|
|
<th class="subject">Subject <a href="index_subject_desc_0.html"><img src="up.png"></a><a href="index_subject_asc_0.html"><img src="down.png"></a></th>
|
|
<th class="date">Date <a href="index_date_desc_0.html"><img src="up.png"></a><a href="index_date_asc_0.html"><img src="down.png"></a></th>
|
|
<th class="attachments">Att.</th>
|
|
</tr>
|
|
%(items)s
|
|
</tbody>
|
|
</table>
|
|
<div class="footer">
|
|
Generated with emailparser by the <a href="http://www.cryto.net/">Cryto Coding Collective</a>, licensed under the <a href="http://sam.zoy.org/wtfpl/">WTFPL</a>. Uses icons by <a href="http://p.yusukekamiyamane.com/">Yusuke Kamiyamane</a>, licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC-BY 3.0.</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|