2017-09-10 05:41:22 +00:00
|
|
|
doctype html
|
|
|
|
html
|
|
|
|
head
|
|
|
|
meta(http-equiv='X-UA-Compatible', content='IE=edge')
|
|
|
|
meta(charset='UTF-8')
|
2018-03-11 05:11:32 +00:00
|
|
|
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')
|
2018-06-11 03:23:09 +00:00
|
|
|
title= config.title
|
2017-09-10 05:41:22 +00:00
|
|
|
|
|
|
|
//- Favicon
|
|
|
|
each favsize in [57, 60, 72, 76, 114, 120, 144, 152, 180]
|
2018-03-11 05:11:32 +00:00
|
|
|
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')
|
2017-09-10 05:41:22 +00:00
|
|
|
each favsize in [32, 96, 16]
|
2018-03-11 05:11:32 +00:00
|
|
|
link(rel='icon', type='image/png', sizes=favsize + 'x' + favsize, href='/favicons/favicon-' + favsize + 'x' + favsize + '.png')
|
|
|
|
link(rel='manifest', href='/manifest.json')
|
2017-09-10 05:41:22 +00:00
|
|
|
|
|
|
|
//- Site Lang
|
|
|
|
script.
|
2018-06-11 03:23:09 +00:00
|
|
|
var siteConfig = !{JSON.stringify({ title: config.title, theme: config.theming.theme, darkMode: config.theming.darkMode, lang: config.lang.code })}
|
2017-09-10 05:41:22 +00:00
|
|
|
|
2018-01-27 01:22:31 +00:00
|
|
|
//- CSS
|
2018-10-08 04:17:31 +00:00
|
|
|
link(type='text/css', rel='stylesheet', href='https://fonts.googleapis.com/icon?family=Roboto:400,500,700|Varela+Round|Source+Code+Pro:400,700|Material+Icons')
|
2018-03-03 06:32:58 +00:00
|
|
|
link(type='text/css', rel='stylesheet', href='https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css')
|
2018-09-29 19:39:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
//- JS
|
|
|
|
|
|
|
|
|
|
|
|
script(
|
|
|
|
type='text/javascript'
|
|
|
|
src='/js/runtime.js'
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
script(
|
|
|
|
type='text/javascript'
|
|
|
|
src='/js/app.js'
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-09-10 05:41:22 +00:00
|
|
|
|
|
|
|
block head
|
|
|
|
|
2018-03-17 06:35:52 +00:00
|
|
|
body
|
|
|
|
block body
|