keyoxide-web/views/templates/base.pug

21 lines
607 B
Text
Raw Normal View History

2021-03-01 07:01:34 -07: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')
2021-05-04 03:18:18 -06:00
title= (title ? title : 'Keyoxide')
2021-03-01 07:01:34 -07:00
link(rel='stylesheet' href='/static/styles.css')
2021-05-04 03:18:18 -06:00
link(rel='stylesheet' href='https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css' integrity='sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=' crossorigin='anonymous')
2021-03-30 08:22:03 -06:00
block css
2021-03-01 07:01:34 -07:00
include ../partials/header.pug
main
.container
block content
include ../partials/footer.pug
block js