aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 3ae5cf4a71d89dcec494575f6b58758ee78ca44a (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
<!DOCTYPE html>
<html>

<head>
    <meta charset='utf-8'>
    <meta name="description" content="log2({{.Requests}}) = {{.Log2lzcnt}}">
    <meta name="application-name" content="lzcnt.space">
    <meta name="author" content="iskrim">
    <meta content="website" property="og:type">
    <meta content="https://lzcnt.space" property="og:url">
    <meta content="LZCNT" property="og:site_name">
    <meta content="lzcnt %rdi, %rdi" property="og:title">
    <meta content="log2lzcnt({{.Requests}}) = {{.Log2lzcnt}}" property="og:description">
    <meta
        content="https://mastodon.goldencaramel.skin/system/media_attachments/files/113/844/350/154/991/661/original/8992eed7f2638496.jpg"
        property="og:image">
    <meta content="640" property="og:image:width">
    <meta content="640" property="og:image:height">
    <meta http-equiv='X-UA-Compatible' content='IE=edge'>
    <meta name='viewport' content='width=device-width, initial-scale=1'>
    <title>LZCNT</title>
</head>

<style>
    body {
        background-color: rgb(22,22,22);
        color: white;
    }
</style>

<body>
    <div style="display: flex; justify-content: center;">
        <h2 style="text-align: center;"><code><a href="/">LZCNT</a> - {{.Title}}</code></h2>
    </div>
    <div style="width: fit-content; margin-left: auto; margin-right: auto;">
        {{ if eq .Page "log2.s.html" }}
            {{template "log2.s.html" .}}
        {{ end }}
        {{ if eq .Page "about.go.html"}} 
            {{template "about.go.html" .}}
        {{ end }}
    </div>
</body>

</html>