layout.jade 771 B

123456789101112131415161718192021222324252627
  1. doctype html
  2. html
  3. head
  4. meta(charset='utf-8')
  5. meta(http-equiv='X-UA-Compatible', content='IE=edge')
  6. meta(name='viewport', content='width=device-width, initial-scale=1.0')
  7. meta(name='csrf-token', content=_csrf)
  8. title #{title} - Juryd
  9. meta(name='description', content='Juryd Judging Everything')
  10. link(rel='stylesheet', href='/css/style.min.css')
  11. body
  12. include partials/header
  13. section#partial
  14. .container
  15. .row
  16. .col-sm-8.col-sm-offset-2
  17. include partials/flash
  18. block content
  19. include partials/footer
  20. script(src='/js/lib.min.js')
  21. script(src='/js/main.min.js')
  22. //if lt IE 9
  23. script(src='js/html5shiv.min.js')
  24. script(src='js/respond.min.js')