aboutsummaryrefslogtreecommitdiff
path: root/tor-metrics/templates/skeleton.html
diff options
context:
space:
mode:
authorJordan <me@jordan.im>2019-08-10 02:57:40 -0700
committerJordan <me@jordan.im>2019-08-10 02:57:40 -0700
commitf21a1e86291657d74c4a42b6020e2d3565ecafb4 (patch)
treed4823d2a06b6aa838e19b76988d5a2c01bfa2a57 /tor-metrics/templates/skeleton.html
parent279721eb9df87672213ba8ae1856698efc5d3d5f (diff)
downloadallium-f21a1e86291657d74c4a42b6020e2d3565ecafb4.tar.gz
allium-f21a1e86291657d74c4a42b6020e2d3565ecafb4.zip
per-relay pages, template cleanup
Diffstat (limited to 'tor-metrics/templates/skeleton.html')
-rw-r--r--tor-metrics/templates/skeleton.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/tor-metrics/templates/skeleton.html b/tor-metrics/templates/skeleton.html
new file mode 100644
index 0000000..17dbc8a
--- /dev/null
+++ b/tor-metrics/templates/skeleton.html
@@ -0,0 +1,21 @@
+{% block head %}
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <title>{% block title %}{% endblock %}</title>
+ <meta name="description" content="Javascript-free Tor metrics generated from an hourly API request.">
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="stylesheet" href="{{ path_prefix }}static/css/bootstrap.min.css">
+</head>
+{% endblock %}
+<body>
+<div class="container">
+{% block body %}
+{% endblock %}
+<p>Country flags provided by <a href="https://github.com/gosquared/flags">GoSquared</a>, relay flags by the <a href="https://gitweb.torproject.org/metrics-web.git/">Tor Project</a>.</p>
+</div>
+</body>
+{% block footer %}
+</html>
+{% endblock %}