layout.jade 1.2 KB

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