Tagged Questions
0
votes
3answers
55 views
Dynamically load jade templates
I'm working on a small documentation website and the content is stored in files. For instance I have two files chapter1.jade and chapter2.jade in a module1/ directory.
I'd like to read the module1/ ...
0
votes
0answers
147 views
Can't use Jade Mixin More Than Once
EDIT: Nevermind. Fixed and corrected in here. Was an indention issue in the Mixin. Will leave this up if anyone wants to try this.
I'm attempting to use JSON to populate a navigation mixin and there ...
0
votes
1answer
83 views
How to use a jade template to accept information from multiple sources and display with include statements
I have this template:
.bar
.titleBox
a.title(href=URL) #{title}
Which I want to include multiple times in another page, titles.jade, like so:
#contentBox
include bar
include bar
...
3
votes
1answer
729 views
How to append block to parent using jade template
I'm trying to create a modular layout using jade template. I would like to append a script block from a child into its parents parent. I'm not quite sure if its possible at all.
Here is my ...
0
votes
1answer
342 views
use block in include node.js jade
I am trying to use block in include:
for exemple:
layout.jade
!!!5
html
head
body
include header
#footer footer
bloc javascript
script('src'= 'jquery.js')
...
2
votes
1answer
158 views
Interpolation in include directive with jade?
Rather self-explanatory, but this is what I'd like to do:
- foo = ['elements','here']
include includes/specifications/#{foo.length}
It doesn't appear that interpolation is supported, as jade ...
1
vote
1answer
336 views
Include the contents of other files when rendering jade in Express?
I have the following layout.jade:
!!!
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
body!= body
In the body, I'd like to include the contents of another ...