mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-19 18:29:37 +01:00
10 lines
226 B
HTML
10 lines
226 B
HTML
|
<h2>pywb Sample Home Page</h2>
|
||
|
|
||
|
The following archive collections are available:
|
||
|
|
||
|
<ul>
|
||
|
{% for route in routes %}
|
||
|
<li><a href="{{ '/' + route.path }}">{{ '/' + route.path }}</a>: {{ route | string }}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|