summaryrefslogtreecommitdiff
path: root/_includes/og-image.og.njk
blob: 9cad23dc741f80a1f76df06a0fef70e2c3c1d658 (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
<style>
    .root {
        width: 100%;
        height: 100%;
        display: flex;

        font-family: "JetBrains Mono";
        flex-direction: column;
        justify-content: flex-end;
        background: #171715;
        padding: 20px 50px;
        border-bottom: 20px solid #efefd2;
    }

    .title {
        color: #efefd2;
        font-size: 70px;
    }
    .site {
        color: #efefd2;
        font-size: 20px;
    }
</style>

<div class="root">
    <div class="site">/home/spellis{{ siteTitle }}</div>

    <h1 class="title">{{ title }}</h1>
</div>