diff --git a/views/index.pug b/views/index.pug index 5474154..c85a9a3 100644 --- a/views/index.pug +++ b/views/index.pug @@ -2,7 +2,7 @@ extends templates/base.pug block content section#search.form-wrapper - + form(action="post") diff --git a/views/templates/base.pug b/views/templates/base.pug index 9dbf6c0..19e16a5 100644 --- a/views/templates/base.pug +++ b/views/templates/base.pug @@ -6,6 +6,7 @@ html(lang='en') 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') + link(rel='stylesheet' href='/static/main.css') title= (title ? title : 'Keyoxide') include ../partials/header.pug @@ -16,7 +17,6 @@ html(lang='en') 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/doipFetchers.js' charset='utf-8') script(type='application/javascript' defer src='/static/doip.js' charset='utf-8')