summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: a827efe943cb006b4eb440d19d15084017e560b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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>