layout.jade 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. doctype 5
  2. html
  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='/images/logo.png')
  14. link(rel='stylesheet', href='/stylesheets/style.css')
  15. script(type='text/javascript', src='/socket.io/socket.io.js')
  16. script(type='text/javascript', src='/javascripts/jquery.js')
  17. script(type='text/javascript', src='/javascripts/jquery.stickyFooter.js')
  18. script(type='text/javascript', src='/javascripts/chess.js')
  19. script(type='text/javascript', src='/javascripts/app.js')
  20. link(href='http://fonts.googleapis.com/css?family=Cherry+Swash|Open+Sans:400,600', rel='stylesheet', type='text/css')
  21. //if IE
  22. script(src='http://html5shiv.googlecode.com/svn/trunk/html5.js')
  23. body
  24. #container_wrapper.clearfix
  25. #container.clearfix
  26. block content
  27. footer
  28. #footer.clearfix
  29. p.center 2013 - 2014. Reti Chess is available under
  30. a(href='http://opensource.org/licenses/MIT') the MIT License (MIT)
  31. . Fork me on
  32. a(href='http://github.com/romanmatiasko/reti-chess') Github
  33. .