|
|
|
|
@ -1,12 +1,13 @@
|
|
|
|
|
doctype html
|
|
|
|
|
html(lang=siteConfig.lang)
|
|
|
|
|
head
|
|
|
|
|
- const baseUrl = siteConfig.baseUrl || ''
|
|
|
|
|
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='#1976d2')
|
|
|
|
|
meta(name='msapplication-TileColor', content='#1976d2')
|
|
|
|
|
meta(name='msapplication-TileImage', content='/_assets/favicons/mstile-150x150.png')
|
|
|
|
|
meta(name='msapplication-TileImage', content=baseUrl + '/_assets/favicons/mstile-150x150.png')
|
|
|
|
|
|
|
|
|
|
title= pageMeta.title + ' | ' + config.title
|
|
|
|
|
|
|
|
|
|
@ -20,12 +21,12 @@ html(lang=siteConfig.lang)
|
|
|
|
|
meta(property='og:site_name', content=config.title)
|
|
|
|
|
|
|
|
|
|
//- Favicon
|
|
|
|
|
link(rel='apple-touch-icon', sizes='180x180', href='/_assets/favicons/apple-touch-icon.png')
|
|
|
|
|
link(rel='icon', type='image/png', sizes='192x192', href='/_assets/favicons/android-chrome-192x192.png')
|
|
|
|
|
link(rel='icon', type='image/png', sizes='32x32', href='/_assets/favicons/favicon-32x32.png')
|
|
|
|
|
link(rel='icon', type='image/png', sizes='16x16', href='/_assets/favicons/favicon-16x16.png')
|
|
|
|
|
link(rel='mask-icon', href='/_assets/favicons/safari-pinned-tab.svg', color='#1976d2')
|
|
|
|
|
link(rel='manifest', href='/_assets/manifest.json')
|
|
|
|
|
link(rel='apple-touch-icon', sizes='180x180', href=baseUrl + '/_assets/favicons/apple-touch-icon.png')
|
|
|
|
|
link(rel='icon', type='image/png', sizes='192x192', href=baseUrl + '/_assets/favicons/android-chrome-192x192.png')
|
|
|
|
|
link(rel='icon', type='image/png', sizes='32x32', href=baseUrl + '/_assets/favicons/favicon-32x32.png')
|
|
|
|
|
link(rel='icon', type='image/png', sizes='16x16', href=baseUrl + '/_assets/favicons/favicon-16x16.png')
|
|
|
|
|
link(rel='mask-icon', href=baseUrl + '/_assets/favicons/safari-pinned-tab.svg', color='#1976d2')
|
|
|
|
|
link(rel='manifest', href=baseUrl + '/_assets/manifest.json')
|
|
|
|
|
|
|
|
|
|
//- Site Properties
|
|
|
|
|
script.
|
|
|
|
|
|