summaryrefslogtreecommitdiff
path: root/swayback/templates/index.html
blob: 028a5a96d3d45a98d427ad06c0316fe0a0bff390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="x-ua-compatible" content="ie=edge">
        <title>Index</title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
		<style>
		</style>
    </head>
    <body>
		<ul>
			{% for u, ur, d in index %}
				<li><a href="{{ ur }}">{{ u }}</a> {{ d }}</li>
			{% endfor %}
		</ul>
    </body>
</html>