Skip to content

Instantly share code, notes, and snippets.

@greeze
Created July 16, 2012 17:40
Show Gist options
  • Save greeze/3123956 to your computer and use it in GitHub Desktop.
Save greeze/3123956 to your computer and use it in GitHub Desktop.
Example of jade blocks not rendering properly in Locomotive
doctype 5
html(lang="en")
head
body
.container
// subview.jade content should appear here, but doesn't
block content
app.get('/', function(req, res){
res.render("subview");
});
extends mainview
block content
.hero-unit
h1 Hello, world.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment