keyoxide-web/views/template.base.pug
2020-08-08 21:40:58 +02:00

33 lines
926 B
Text

doctype html
head
meta(charset='utf-8')
meta(name='viewport' content='width=device-width, initial-scale=1')
meta(name='theme-color' content='#fff')
link(rel='shortcut icon' href='/favicon.svg')
title= (title ? title : "Keyoxide")
link(rel='stylesheet' href='/static/styles.css')
header
.container
a.logo(href='/')
img(src='/static/img/logo_96.png' alt='Keyoxide logo')
.spacer
nav
a(href='/') about
a(href='/guides') guides
a(href='/faq') faq
main.container
block content
footer
p
a(href='https://codeberg.org/keyoxide') Source code
| -
a(href='https://drone.keyoxide.org/keyoxide/web/') CI/CD
| -
a(href='https://fosstodon.org/@keyoxide') Mastodon
p © 2020 Keyoxide contributors
script(src='/dep/openpgp.min.js')
script(src='/static/qrcode.min.js')
script(type='text/javascript' src='/static/scripts.js' charset='utf-8')