layout.jade 785 B

12345678910111213141516171819202122232425
  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 Chess vs. David
  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
  20. - if (process.env.NODE_ENV === 'development')
  21. script(src='/js/vendor.js')
  22. block scripts