layout.jade 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. block head
  17. link(href='http://fonts.googleapis.com/css?family=Cherry+Swash|Open+Sans:400,600', rel='stylesheet', type='text/css')
  18. //if IE
  19. script(src='http://html5shiv.googlecode.com/svn/trunk/html5.js')
  20. body
  21. #modal-mask
  22. #modal-window
  23. p#modal-message Message.
  24. a#modal-ok.button(href='#') OK
  25. #container_wrapper.clearfix
  26. #container.clearfix
  27. block content
  28. footer
  29. #footer.clearfix
  30. p.center 2013 - 2014. Reti Chess is available under
  31. a(href='http://opensource.org/licenses/MIT') the MIT License (MIT)
  32. . Fork me on
  33. a(href='http://github.com/romanmatiasko/reti-chess') Github
  34. .
  35. script(type='text/javascript', src='/javascripts/jquery.js')
  36. script(type='text/javascript', src='/javascripts/jquery.stickyFooter.js')
  37. script(type='text/javascript', src='/javascripts/chess.js')
  38. script(type='text/javascript', src='/javascripts/app.js')
  39. block scripts