Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to understand how JADE works when there are several templates.

I worked by this tutorial: http://www.franz-enzenhofer.com/jade

But, I got this:

$ curl http://localhost:3000
<h1> <a href="http://www.franz-enzenhofer.com/">Franz Enzenhofer</a></h1>

It seems that the command "res.render('index.jade',..." only took the index.jade template, but didn't insert it into the layout.jade template as should happen...

share|improve this question

1 Answer

up vote 1 down vote accepted

I assume you are using partials. They were removed with express v3. See the View System Changes part for more information.

From express v3 on you should use blocks. For example:

my-template.jade:

extends my-layout

block head
  script(src="myfile.js")

block content
  h1 My page

my-layout.jade

doctype 5
html
  head
    title My title
    block head
  body
    #content
      block content
share|improve this answer
Great, thanks! Unfortunately I find no way to contact the author of that demo in order to ask him to upgrade his demo. – Erel Segal Halevi Dec 9 '12 at 7:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.