Partial Not Defined in Jade

express, node.js, pug

Solution

Jade newest version doesn't support partials. You might be following outdated tutorials. Please read up on jade documentation here

Problem

Here is what I have in index.jade. And yes I am using express.js ``` extends layout block content h1 Invoices: != partial("invoice") ``` This matches what I see in every single Jade/Express tutorial. But I get "Reference error: partial not defined". Any ideas why?

Original source