summaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 55424015a290ac46df8b47fe21c7edde926a0466 (plain) (blame)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="robots" content="noindex" />
    
    <link rel="canonical" href="$url.full$">
    <link rel="shortcut icon" href="/favicon.ico" />

    $for(author)$
        <meta name="author" content="$it.name$$if(it.email)$ <$it.email$>$endif$" />
    $endfor$
    $if(date-meta)$
        <meta name="dcterms.date" content="$date-meta$" />
    $endif$
    $if(keywords)$
        <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
    $endif$

    $if(feed)$
        <link href="$feed.url.rel$" type="application/atom+xml" rel="alternate" title="$if(namespace.root.is_index)$$else$$title$ – $endif$$site.title$" />
    $endif$
    $if(layout.is_categorized_list)$
        $for(pages.asc_title)$
            $if(it.feed)$
                <link href="$it.feed.url.rel$" type="application/atom+xml" rel="alternate" title="$it.title$ – $site.title$" />
            $endif$
        $endfor$
    $endif$

    <title>$if(namespace.root.is_index)$$else$$title$ – $endif$$site.title$</title>

    <link rel="preload" href="/style.css?$style_hash$" as="style" />
    <link rel="preload" href="/symbols.svg" as="image" type="image/svg+xml" />
    <link rel="preload" href="/IBMPlexSans-Regular.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
    <link rel="preload" href="/IBMPlexSans-Bold.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
    <link rel="preload" href="/GaretVariable.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
    <link rel="preload" href="/iosevka-term-ss09-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
    <link rel="preload" href="/iosevka-term-ss09-bold.woff2" as="font" type="font/woff2" crossorigin="anonymous" />

    <link rel="stylesheet" href="/style.css?$style_hash$" />
</head>

<body>
    <nav class="c-header">
        <a class="c-outer-button c-outer-button--inverted" href="/" title="$site.title$">
            <span class="c-outer-button__icon">
                <svg class="c-outer-button__icon-symbol">
                    <use href="/symbols.svg#logo"></use>
                </svg>
            </span>
        </a>
        $if(namespace.root.is_index)$
        $else$
            $for(menus.main.items)$
                $if(it.active)$
                    <a class="c-outer-button" href="$it.url$">
                        <span class="c-outer-button__content">
                            $it.label$
                        </span>
                    </a>
                $endif$
            $endfor$
        $endif$
    </nav>
        
    <main>
        $if(namespace.root.is_index)$
${layouts/index()}
        $elseif(layout.is_categorized_list)$
${layouts/categorized_list()}
        $elseif(layout.is_list)$
${layouts/list()}
        $else$
${layouts/page()}
        $endif$

        <footer class="c-footer">
            <div class="l-container l-container--pad-y u-pb0">
                <pre class="c-footer__ascii u-dn@sm-lo">${layouts/ascii_fox()}</pre>
                <pre class="c-footer__ascii u-dn@sm-hi">${layouts/ascii_fox_small()}</pre>
            </div>

            <a class="c-outer-button c-outer-button--scroll-top" href="#" title="To the top">
                <span class="c-outer-button__icon">
                    <svg class="c-outer-button__icon-symbol o-icon">
                        <use href="/symbols.svg#icon-arrow-up"></use>
                    </svg>
                </span>
            </a>
        </footer>
    </main>
</body>

</html>