layout.jade 1.0 KB

12345678910111213141516171819202122232425262728
  1. doctype html
  2. html(lang='en')
  3. head
  4. - if (typeof(title) !== 'undefined')
  5. title #{title} | Chess | David A. Windham
  6. - else
  7. title Reti Chess
  8. meta(charset='utf-8')
  9. meta(name='robots', content='index, follow')
  10. meta(name='viewport', content='width=device-width, initial-scale=1')
  11. link(rel='icon', type='image/png' href='/img/favicon.ico')
  12. link(rel='stylesheet', type='text/css' href='http://fonts.googleapis.com/css?family=Cherry+Swash:400|Open+Sans:400,600&subset=latin')
  13. link(rel='stylesheet', href='/css/main.css')
  14. body
  15. #container-wrapper.clearfix
  16. block content
  17. footer
  18. #footer.clearfix
  19. p.center 2015  –  Reti Chess is distributed under
  20. a(href='http://github.com/romanmatiasko/reti-chess/blob/master/LICENSE.md') the MIT License
  21. |   –  
  22. a(href='http://github.com/romanmatiasko/reti-chess') Github
  23. - if (process.env.NODE_ENV === 'development')
  24. script(src='/js/vendor.js')
  25. block scripts