summaryrefslogtreecommitdiff
path: root/src/layouts/Layout.astro
blob: a229f92702f36934696be444ac6f54d713a89e5f (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
<!doctype html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width" />
        <link rel="icon" href="/favicon.ico" />
        <meta name="generator" content={Astro.generator} />
        <title>liz.coffee</title>
        <link rel="stylesheet" href="/styles/styles.css" />
    </head>
    <body>
        <header>
            <h1 class="bright2">## liz.coffee</h1>
            <hr />
        </header>
        <main>
            <slot />
        </main>
        <footer>
            <hr />
            <div class="blinkies">
                <img
                    width="150"
                    height="20"
                    src="/img/blinkies/hatecomputers-club.gif"
                />
                <img
                    width="150"
                    height="20"
                    src="/img/blinkies/autism.gif"
                />
                <img
                    width="150"
                    height="20"
                    src="/img/blinkies/fuckcomputers.gif"
                />
                <img
                    width="150"
                    height="20"
                    src="/img/blinkies/bee.gif"
                />
                <img
                    width="150"
                    height="20"
                    src="/img/blinkies/begaydocrime.gif"
                />
                <img
                    width="150"
                    height="20"
                    src="/img/blinkies/bored.gif"
                />
                <img
                    width="150"
                    height="20"
                    src="/img/blinkies/connection.gif"
                />
                <img
                    width="150"
                    height="20"
                    src="/img/blinkies/eepy.gif"
                />
                <img
                    width="150"
                    height="20"
                    src="/img/blinkies/loveuguys.gif"
                />
                <img
                    width="150"
                    height="20"
                    src="/img/blinkies/capitalism.gif"
                />
            </div>
        </footer>
    </body>
</html>