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.

27 lines
695 B

  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='theme-color', content='#009688')
  7. meta(name='msapplication-TileColor', content='#009688')
  8. title= appconfig.title
  9. // Favicon
  10. each favsize in [32, 96, 16]
  11. link(rel='icon', type='image/png', sizes=favsize + 'x' + favsize href='/images/favicon-' + favsize + 'x' + favsize + '.png')
  12. // CSS
  13. link(type='text/css', rel='stylesheet', href='/css/libs.css')
  14. link(type='text/css', rel='stylesheet', href='/css/app.css')
  15. block head
  16. body
  17. #root
  18. include ./common/header
  19. include ./common/alerts
  20. main
  21. block content
  22. include ./common/footer
  23. block outside