mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-22 14:24:27 +01:00
'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
23 lines
478 B
HTML
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>
|
|
|