summaryrefslogtreecommitdiff
path: root/views/layout.pug
blob: 369ece03d662d021b6ae2b33eff1391d4eb04fe9 (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
// SPDX-License-Identifier: AGPL-3.0-only
// Author: metamuffin
// Source: https://codeberg.org/metamuffin/website
html(lang="en")
    head
        meta(charset="UTF-8")
        meta(name="viewport", content="width=device-width, initial-scale=1.0")
        title metamuffin.org
    body
        noscript 
            header
                h2 metamuffin 
                nav 
                    ul 
                        li: a(href="/about") about
                        li: a(href="/services") services
                        li: a(href="/projects") projects
                        li: a(href="/links") links
                        li: a(href="/contact") contact
            hr

            block content
                p pretty empty here...

            hr
            footer
                p metamuffin.org version of commit #{commit}
                p copyright (C) 2020, 2021, 2022 metamuffin
                p see #[a(href="/licence") licence].
                p sources can be found on #[a(href="https://codeberg.org/metamuffin/website") codeberg].
        p Please disable javascript to view this page.