keyoxide-web/views/templates/base.pug
2022-02-25 19:18:46 +01:00

21 lines
No EOL
728 B
Text

doctype html
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
main
.container
block content
include ../partials/footer.pug
link(rel='stylesheet' href='/static/main.css')
script(type='application/javascript' defer src='/static/openpgp.js' charset='utf-8')
script(type='application/javascript' defer src='/static/main.js' charset='utf-8')