wikijs-fork/server/views/layout.pug

40 lines
1.5 KiB
Plaintext
Raw Normal View History

2016-08-17 03:56:08 +00:00
doctype html
html
2017-02-10 02:35:37 +00:00
head
meta(http-equiv='X-UA-Compatible', content='IE=edge')
meta(charset='UTF-8')
meta(name='viewport', content='width=device-width, initial-scale=1')
meta(name='theme-color', content='#009688')
meta(name='msapplication-TileColor', content='#009688')
2017-06-18 22:35:33 +00:00
meta(name='msapplication-TileImage', content=appconfig.host + '/favicons/ms-icon-144x144.png')
2017-02-10 02:35:37 +00:00
title= appconfig.title
2016-08-17 03:56:08 +00:00
2017-05-21 03:21:16 +00:00
//- Favicon
2017-02-10 02:35:37 +00:00
each favsize in [57, 60, 72, 76, 114, 120, 144, 152, 180]
2017-06-18 22:35:33 +00:00
link(rel='apple-touch-icon', sizes=favsize + 'x' + favsize, href=appconfig.host + '/favicons/apple-icon-' + favsize + 'x' + favsize + '.png')
link(rel='icon', type='image/png', sizes='192x192', href=appconfig.host + '/favicons/android-icon-192x192.png')
2017-02-10 02:35:37 +00:00
each favsize in [32, 96, 16]
2017-06-18 22:35:33 +00:00
link(rel='icon', type='image/png', sizes=favsize + 'x' + favsize, href=appconfig.host + '/favicons/favicon-' + favsize + 'x' + favsize + '.png')
link(rel='manifest', href=appconfig.host + '/manifest.json')
2016-08-17 03:56:08 +00:00
2017-05-21 03:21:16 +00:00
//- Site Lang
2017-05-21 22:58:19 +00:00
script.
var siteLang = '!{appconfig.lang}';
var siteRoot = '!{appconfig.host}';
2017-05-21 03:21:16 +00:00
//- JS / CSS
2017-06-18 22:35:33 +00:00
script(type='text/javascript', src=appconfig.host + '/js/vendor.js')
script(type='text/javascript', src=appconfig.host + '/js/app.js')
2017-02-10 02:35:37 +00:00
block head
2016-08-17 03:56:08 +00:00
2017-02-10 02:35:37 +00:00
body
#root.has-stickynav(class=['is-primary-' + appconfig.theme.primary, 'is-alternate-' + appconfig.theme.alt])
2017-02-10 02:35:37 +00:00
include ./common/header.pug
alert
2017-02-10 02:35:37 +00:00
main
block content
include ./common/footer.pug
2016-08-17 03:56:08 +00:00
2017-02-10 02:35:37 +00:00
block outside