_layout.jade 549 B

1234567891011121314151617181920
  1. doctype
  2. html
  3. head
  4. link(rel="stylesheet", href="/css/main.css")
  5. link(rel="alternate", type="application/atom+xml", title="#{ globals.brand }", href="#{ globals.uri }/feed.atom")
  6. script.
  7. var showDebug = function(){
  8. document.getElementById('debug').style.display = 'block';
  9. return false;
  10. }
  11. body
  12. #header
  13. h1= globals.brand
  14. include shared/_nav
  15. != yield
  16. a(href="#", onclick="showDebug()") open debug panel
  17. .well#debug(style="display:none;")
  18. != partial("shared/_debug")