keyoxide-web/views/templates/base.pug

23 lines
904 B
Text
Raw Normal View History

2021-03-01 07:01:34 -07:00
doctype html
2021-06-07 03:47:09 -06:00
html(lang='en')
head
meta(charset='utf-8')
meta(name='viewport' content='width=device-width, initial-scale=1')
meta(name='theme-color' content='#fff')
meta(name='description' content='Modern and secure platform to manage a decentralized identity based on cryptographic keys')
link(rel='shortcut icon' href='/favicon.svg')
title= (title ? title : 'Keyoxide')
include ../partials/header.pug
2021-03-30 08:22:03 -06:00
2021-06-07 03:47:09 -06:00
main
.container
block content
2021-03-01 07:01:34 -07:00
2021-06-07 03:47:09 -06:00
include ../partials/footer.pug
2021-03-01 07:01:34 -07:00
2022-02-25 11:18:46 -07:00
link(rel='stylesheet' href='/static/main.css')
script(type='application/javascript' defer src='/static/openpgp.js' charset='utf-8')
2023-07-13 03:11:33 -06:00
script(type='application/javascript' defer src='/static/doipFetchers.js' charset='utf-8')
script(type='application/javascript' defer src='/static/doip.js' charset='utf-8')
2022-02-25 11:18:46 -07:00
script(type='application/javascript' defer src='/static/main.js' charset='utf-8')