layout.jade 1.1 KB

123456789101112131415161718192021222324252627282930
  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(name='description', content='Reti Chess is a lightweight real-time chess app built in Node.js with use of Express framework and Socket.IO')
  12. meta(name='viewport', content='width=device-width, initial-scale=1')
  13. link(rel='shortcut icon', href='/img/logo.png')
  14. link(rel='stylesheet', href='/css/main.css')
  15. link(href='http://fonts.googleapis.com/css?family=Cherry+Swash|Open+Sans:400,600', rel='stylesheet', type='text/css')
  16. body
  17. #container-wrapper.clearfix
  18. block content
  19. footer
  20. #footer.clearfix
  21. p.center Distributed under
  22. a(href='http://opensource.org/licenses/MIT') the MIT License
  23. |   •  
  24. a(href='http://github.com/romanmatiasko/reti-chess') Github repo
  25. - if (process.env.NODE_ENV === 'development')
  26. script(src='/js/vendor.js')
  27. block scripts