diff options
Diffstat (limited to 'swayback/templates/index.html')
-rw-r--r-- | swayback/templates/index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/swayback/templates/index.html b/swayback/templates/index.html new file mode 100644 index 0000000..028a5a9 --- /dev/null +++ b/swayback/templates/index.html @@ -0,0 +1,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> |