mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-19 18:29:37 +01:00
18 lines
670 B
HTML
18 lines
670 B
HTML
<body>
|
|
<h2>pywb Sample Calendar Results</h2>
|
|
<b>{{ cdx_lines | length }}</b> captures of <b>{{ url }}</b>
|
|
<table id="captures" style="border-spacing: 10px;">
|
|
<tr>
|
|
<th>Capture</th>
|
|
<th>Archive File</th>
|
|
</tr>
|
|
{% for cdx in cdx_lines %}
|
|
<tr style="{{ 'font-weight: bold' if cdx['mimetype'] != 'warc/revisit' else '' }}">
|
|
<td><a href="{{ prefix }}{{ cdx.timestamp }}/{{ url }}">{{ cdx['timestamp'] | format_ts('%a, %b %d %Y %H:%M:%S') }}</a></td>
|
|
<td>{{ cdx['filename'] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<i><b>* Unique captures are bold.</b><br/>* Other captures are duplicates of a previous capture.</i>
|
|
</body>
|