layout.pug 358 B

1234567891011121314151617181920
  1. extends ./layout-base
  2. block entrypointVar
  3. - entrypoint = 'main'
  4. block body
  5. if (typeof(suppressNavbar) == "undefined")
  6. include layout/navbar
  7. block content
  8. if (typeof(suppressFooter) == "undefined")
  9. if showThinFooter
  10. include layout/footer
  11. else
  12. include layout/fat-footer
  13. include _cookie_banner
  14. != moduleIncludes("contactModal", locals)