2020-08-07 17:06:08 -06:00
|
|
|
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
|
2020-08-28 15:32:19 -06:00
|
|
|
a(href='/getting-started') getting started
|
2020-08-07 17:06:08 -06:00
|
|
|
a(href='/guides') guides
|
|
|
|
a(href='/faq') faq
|
|
|
|
|
|
|
|
main.container
|
|
|
|
block content
|
|
|
|
|
|
|
|
footer
|
2020-08-18 10:01:54 -06:00
|
|
|
if settings.onion_url
|
|
|
|
p
|
2020-08-20 08:38:34 -06:00
|
|
|
| This website is available via Tor:
|
2020-08-18 10:01:54 -06:00
|
|
|
a(href=`${settings.onion_url}`) #{settings.onion_url}
|
2020-08-14 12:16:14 -06:00
|
|
|
p
|
|
|
|
| Keyoxide
|
2020-08-14 17:25:00 -06:00
|
|
|
a(href="https://codeberg.org/keyoxide/web/releases")= settings.keyoxide_version
|
2020-08-07 17:06:08 -06:00
|
|
|
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
|
2021-01-11 06:58:47 -07:00
|
|
|
p © 2021 Keyoxide contributors
|
2020-08-07 17:06:08 -06:00
|
|
|
|
2021-01-03 10:38:56 -07:00
|
|
|
script(type='application/javascript' src='/static/openpgp.min.js' charset='utf-8')
|
|
|
|
script(type='application/javascript' src='/static/qrcode.min.js' charset='utf-8')
|
2020-08-14 08:23:32 -06:00
|
|
|
script(type='application/javascript' src='/static/scripts.js' charset='utf-8')
|