1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-22 14:24:27 +01:00
pywb/pywb/ui/index.html
Ilya Kreymer bd21fec6d4 update run-uwsgi.sh and add run-gunicorn.sh
update README and INSTALL, fix typo
only list wb handlers on home page by default
pep8 fixes
2014-04-03 08:56:18 -07:00

12 lines
273 B
HTML

<h2>pywb Sample Home Page</h2>
The following archive collections are available:
<ul>
{% for route in routes %}
{% if route | is_wb_handler %}
<li><a href="{{ '/' + route.path }}">{{ '/' + route.path }}</a>: {{ route | string }}</li>
{% endif %}
{% endfor %}
</ul>