So I'm using jade to build a couple of webpages, but my landingpage differs in the other pages in the way that it hasn't got a menu. Except for that it shares the same header and footer. My problem is that I'd like to conditionally include menu.jade into conversion to html. I'd like to do something like this:
base.jade:
doctype html
  head
    title= title
  body
    block menu
    block content
    include footermenu.jade
extends base
  ul
    li Home
    li Contactindex.jade:
extends base
block content
  p hello landingpagepage.jade
extends base
block content
  p hello subpageThe thing is: when I convert index.jade everything is fine; my pages looks like I want it to. But when I convert page.jade I somehow would like to include menu.jade as well,o I don't have to rewrite my menu across all subpages.
extends baseblock menu
ulli Homeli Contact
extends base_with_menublock contenth1 Whatever
--
You received this message because you are subscribed to the Google Groups "Jade" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jadejs+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
ul
  li Home  li Contactinclude page.jade
block content
  p hello subpage