mirror of https://github.com/requarks/wiki
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.
31 lines
1.3 KiB
31 lines
1.3 KiB
7 years ago
|
doctype html
|
||
|
html
|
||
|
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')
|
||
|
meta(name='msapplication-TileImage', content=config.site.path + '/favicons/ms-icon-144x144.png')
|
||
|
title= config.title
|
||
|
|
||
|
//- Favicon
|
||
|
each favsize in [57, 60, 72, 76, 114, 120, 144, 152, 180]
|
||
|
link(rel='apple-touch-icon', sizes=favsize + 'x' + favsize, href=config.site.path + '/favicons/apple-icon-' + favsize + 'x' + favsize + '.png')
|
||
|
link(rel='icon', type='image/png', sizes='192x192', href=config.site.path + '/favicons/android-icon-192x192.png')
|
||
|
each favsize in [32, 96, 16]
|
||
|
link(rel='icon', type='image/png', sizes=favsize + 'x' + favsize, href=config.site.path + '/favicons/favicon-' + favsize + 'x' + favsize + '.png')
|
||
|
link(rel='manifest', href=config.site.path + '/manifest.json')
|
||
|
|
||
|
//- Site Lang
|
||
|
script.
|
||
|
var siteConfig = !{JSON.stringify(config.site)}
|
||
|
|
||
|
//- JS / CSS
|
||
|
script(type='text/javascript', src=config.site.path + '/js/vendor.js')
|
||
|
script(type='text/javascript', src=config.site.path + '/js/app.js')
|
||
|
|
||
|
block head
|
||
|
|
||
|
block body
|