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 fcbc2c2966 replay ui: improvements to framed replay messages.
'is_live' added to live rewrite to allow for different message for live replay
vs archived replay to be used.
When using framed replay, default initial message to 'Loading...'
default index.html: list non-replay access points in default home page
2014-07-20 16:46:30 -07:00

23 lines
478 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>
Other endpoints in this deployment:
<ul>
{% for route in routes %}
{% if not route | is_wb_handler %}
<li><b>{{ '/' + route.path }}</b> - {{ route | string }}</li>
{% endif %}
{% endfor %}
</ul>