Last active
December 18, 2015 12:49
-
-
Save dschnare/5785667 to your computer and use it in GitHub Desktop.
Sharing Variables with Jade Templates: Examples of how and how not to share variables across a template and layout.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extends layout | |
prepend page | |
- title = "Home" | |
block body | |
p This is the \#{title} page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- title = "Home" | |
extends layout | |
block body | |
p This is the \#{title} page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doctype 5 | |
block page | |
html | |
head | |
title=title | |
body | |
block body | |
p Hello |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doctype 5 | |
html | |
head | |
title=title | |
body | |
block body | |
p Hello |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment