aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 8c2322034b0eade32b7029800b7197d7cea08e6e (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
    <head>
        {{ template "title" . }}
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="/css/hack.css" />
        <link rel="stylesheet" href="/css/gruvbox-dark.css" />
        <link rel="manifest" href="/static/manifest.json" />

        <link rel="alternate" type="application/rss+xml" href="https://christine.website/blog.rss" />
        <link rel="alternate" type="application/atom+xml" href="https://christine.website/blog.atom" />
        <link rel="alternate" title="My Feed" type="application/json" href="https://christine.website/blog.json" />

        <link rel="apple-touch-icon" sizes="57x57" href="/static/favicon/apple-icon-57x57.png">
        <link rel="apple-touch-icon" sizes="60x60" href="/static/favicon/apple-icon-60x60.png">
        <link rel="apple-touch-icon" sizes="72x72" href="/static/favicon/apple-icon-72x72.png">
        <link rel="apple-touch-icon" sizes="76x76" href="/static/favicon/apple-icon-76x76.png">
        <link rel="apple-touch-icon" sizes="114x114" href="/static/favicon/apple-icon-114x114.png">
        <link rel="apple-touch-icon" sizes="120x120" href="/static/favicon/apple-icon-120x120.png">
        <link rel="apple-touch-icon" sizes="144x144" href="/static/favicon/apple-icon-144x144.png">
        <link rel="apple-touch-icon" sizes="152x152" href="/static/favicon/apple-icon-152x152.png">
        <link rel="apple-touch-icon" sizes="180x180" href="/static/favicon/apple-icon-180x180.png">
        <link rel="icon" type="image/png" sizes="192x192"  href="/static/favicon/android-icon-192x192.png">
        <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon/favicon-32x32.png">
        <link rel="icon" type="image/png" sizes="96x96" href="/static/favicon/favicon-96x96.png">
        <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon/favicon-16x16.png">
        <link rel="manifest" href="/static/favicon/manifest.json">
        <meta name="msapplication-TileColor" content="#ffffff">
        <meta name="msapplication-TileImage" content="/static/favicon/ms-icon-144x144.png">
        <meta name="theme-color" content="#ffffff">
        <style>
         .main {
             padding: 20px 10px;
         }

         .hack h1 {
             padding-top: 0;
         }

         footer.footer {
             border-top: 1px solid #ccc;
             margin-top: 80px;
             margin-top: 5rem;
             padding: 48px 0;
             padding: 3rem 0;
         }

         img {
             max-width: 100%;
             padding: 1em;
         }
        </style>
        {{ template "styles" . }}
    </head>
    <body class="hack gruvbox-dark">
        {{ template "scripts" . }}
        <div class="container">
            <header>
                <p><a href="/">{{ trans "header" "name" }}</a> - <a href="/blog">{{ trans "header" "blog" }}</a> - <a href="/contact">{{ trans "header" "contact" }}</a> - <a href="/resume">{{ trans "header" "resume" }}</a></p>
            </header>
            {{ template "content" . }}
            <footer>
                <blockquote>{{ trans "meta" "copyright" "2018" }}</blockquote>
            </footer>
            <script>
             if (navigator.serviceWorker.controller) {
                 console.log("Active service worker found, no need to register");
             } else {
                 navigator.serviceWorker.register("/sw.js").then(function(reg) {
                     console.log("Service worker has been registered for scope:" + reg.scope);
                 });
             }
            </script>
        </div>
    </body>
</html>

{{ define "scripts" }}{{ end }}
{{ define "styles" }}{{ end }}