mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
doctype html
|
|
html
|
|
head
|
|
meta(http-equiv='X-UA-Compatible', content='IE=edge')
|
|
meta(charset='UTF-8')
|
|
meta(name='viewport', content='user-scalable=yes, width=device-width, initial-scale=1, maximum-scale=5')
|
|
meta(name='theme-color', content='#333333')
|
|
meta(name='msapplication-TileColor', content='#333333')
|
|
meta(name='msapplication-TileImage', content='/favicons/ms-icon-144x144.png')
|
|
title Wiki.js Setup
|
|
|
|
//- Favicon
|
|
each favsize in [57, 60, 72, 76, 114, 120, 144, 152, 180]
|
|
link(rel='apple-touch-icon', sizes=favsize + 'x' + favsize, href='/favicons/apple-icon-' + favsize + 'x' + favsize + '.png')
|
|
link(rel='icon', type='image/png', sizes='192x192', href='/favicons/android-icon-192x192.png')
|
|
each favsize in [32, 96, 16]
|
|
link(rel='icon', type='image/png', sizes=favsize + 'x' + favsize, href='/favicons/favicon-' + favsize + 'x' + favsize + '.png')
|
|
link(rel='manifest', href='/manifest.json')
|
|
|
|
//- Site Lang
|
|
script.
|
|
var siteConfig = !{JSON.stringify({ title: config.title })}
|
|
|
|
//- CSS
|
|
|
|
|
|
//- JS
|
|
|
|
|
|
script(
|
|
type='text/javascript'
|
|
src='/js/runtime.js'
|
|
)
|
|
|
|
|
|
|
|
script(
|
|
type='text/javascript'
|
|
src='/js/setup.js'
|
|
)
|
|
|
|
|
|
|
|
body
|
|
#root
|
|
setup(telemetry-id=telemetryClientID, wiki-version=packageObj.version)
|