Tagged Questions
2
votes
1answer
70 views
Assign content to multiple blocks inside a mixin which generates a nested HTML structure dynamically in Jade?
I want to create the following HTML structure
<div class="outerspace">
<div class="inner1"><p>Inner1 content</p></div>
<div class="inner2"><p>Inner2 ...
1
vote
1answer
44 views
When calling a mixin in Jade, what's the difference between “+” and mixin keyword?
The docmentation tells us to call a mixin by prepending the keyword mixin to the actual mixin.
.bar
mixin foo(arguments)
But on different places I saw people calling a mixin by prepending a ...
0
votes
1answer
156 views
Jade Mixin: 500 TypeError: Cannot read property 'length' of undefined
I've got a mixin causing me trouble:
mixin dialog(title, description, choices)
form.choices.dialog.row
legend
h1 #{title}
p.description #{description}
...
1
vote
1answer
112 views
Inlining Javascript in Jade while maintaining indentation
Is there a way to inline Javascript code in Jade script tag while maintaining indentation?
Removing indentation works but it makes code extremely difficult to read and modify.
Another option is to ...
-1
votes
1answer
44 views
Can jade Iteration have a Micro-Templating variable?
Am using jade as express.js view engin, and I use Micro-Templating ; here is a problem i came across
here is the template
script(id='form',type='text/html')
...
0
votes
1answer
53 views
What's the difference between li #{variable} and li= variable in Jade?
I was playing with Jade Template Syntax and come into this (slightly modified from the documentation):
ul
for book in books
li= book
else
li sorry, no books!
{"books": ["First"]}
I ...
3
votes
4answers
441 views
Jade - Controlling line-breaks in the HTML output
I have a simple search form I wish to implement using Jade.
form
input(
type="text"
size="16"
placeholder="Enter your keywords")
input(
type="button"
...
4
votes
3answers
1k views
Client side + Server side templating, feels wrong to me, how to optimize?
In the web app I am making, I use the classical Express+Jade to render client pages and also expose some REST API (let's say : "user list API").
These client pages use provided API to retrieve "user ...
0
votes
1answer
348 views
jade outputs relative links
I'm starting to play with node, express and jade and when I do this
a(href="http:/www.example.com/" + variable) variable
I get a relative link, say
<a ...
8
votes
4answers
4k views
How do I render partials with jade without express.js?
Only info I found was this:
http://forrst.com/posts/Node_js_Jade_Import_Jade_File-CZW
I replicated the suggested folder structure (views/partials) But it didn't work, as soon as I put
...