summaryrefslogtreecommitdiff
path: root/assets/home.html.jinja
blob: fbd69c30c98ed4bffed3aeb4b0a10bc88565c3e7 (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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>{{ site }}</title>

    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="preload" href="{{ base }}lexend.woff2" as="font" type="font/woff2" crossorigin>
    <link rel="stylesheet" href="{{ base }}{{ style }}">
    <link rel="icon" href="{{ base }}favicon.ico" sizes="any">
    <link rel="manifest" href="{{ base }}manifest.json">
</head>
<body>
<div style="padding: 20px">

    <h1>{{ home_title }}</h1>

    <a class="home-link" href="{{ base }}t/long-strip/">Tags</a>
    <br>
    <a class="home-link" href="{{ base }}i/a/">Titles</a>

    <br>
    <div style="text-align: center">
        <video src="{{ base }}home.mp4" width="128" height="128" loop="" playsinline="" preload="none" autoplay muted></video>
    </div>

    <span style="position: absolute; bottom: 0; left: 0; padding: 15px">
        Made with <span style="color: pink">&amp;lt;3</span> by <span style="color: pink">Shy</span> ♥
    </span>
</div>
</body>
</html>