summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..a827efe
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Have you checked {{ thing }}?</title>
+ <style>
+ body {
+ background: #dddde7;
+ font-color: #888;
+ font-family: Helvetica, sans-serif;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ height: 100%;
+ }
+
+ section {
+ width: 600px;
+ margin: auto;
+ }
+
+ p {
+ font-size: 24px;
+ }
+
+ a {
+ text-decoration: none;
+ }
+ </style>
+</head>
+<body>
+ <section>
+ <p>Have you checked {{ thing }}?</p>
+ <p><a href="">That wasn't it, suggest something else.</a></p>
+ <p><a href="?item={{ item }}">Share this troubleshooting suggestion.</a></p>
+ </section>
+</body>
+</html>