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.

35 lines
1.6 KiB

  1. doctype html
  2. html
  3. head
  4. meta(http-equiv='X-UA-Compatible', content='IE=edge')
  5. meta(charset='UTF-8')
  6. meta(name='viewport', content='width=device-width, initial-scale=1')
  7. meta(name='theme-color', content='#0288d1')
  8. meta(name='msapplication-TileColor', content='#0288d1')
  9. meta(name='msapplication-TileImage', content=config.site.path + 'favicons/ms-icon-144x144.png')
  10. title= config.site.title
  11. //- Favicon
  12. each favsize in [57, 60, 72, 76, 114, 120, 144, 152, 180]
  13. link(rel='apple-touch-icon', sizes=favsize + 'x' + favsize, href=config.site.path + 'favicons/apple-icon-' + favsize + 'x' + favsize + '.png')
  14. link(rel='icon', type='image/png', sizes='192x192', href=config.site.path + 'favicons/android-icon-192x192.png')
  15. each favsize in [32, 96, 16]
  16. link(rel='icon', type='image/png', sizes=favsize + 'x' + favsize, href=config.site.path + 'favicons/favicon-' + favsize + 'x' + favsize + '.png')
  17. link(rel='manifest', href=config.site.path + 'manifest.json')
  18. //- Site Lang
  19. script.
  20. var siteConfig = !{JSON.stringify(config.site)}
  21. //- CSS
  22. link(type='text/css', rel='stylesheet', href=config.site.path + 'css/bundle.css')
  23. link(type='text/css', rel='stylesheet', href='https://fonts.googleapis.com/icon?family=Roboto:400,500,700|Source+Code+Pro:400,700|Material+Icons')
  24. //- JS
  25. script(type='text/javascript', src=config.site.path + 'js/runtime.js')
  26. script(type='text/javascript', src=config.site.path + 'js/vendor.js')
  27. script(type='text/javascript', src=config.site.path + 'js/client.js')
  28. block head
  29. block body