Tagged Questions
2
votes
1answer
45 views
Jade include template based on a variable
I would like to add a template with a name based on a variable.
Something like that:
include= templateName
0
votes
0answers
53 views
How do I import mixins using `pyjade` efficiently?
Referring to https://github.com/SyrusAkbary/pyjade/issues/27, it seems the jinja2 does not allow importing mixins from external files.
However, I got a helper.jade which has loads of mixins. If I ...
0
votes
2answers
156 views
Is it worth precompiling jade + handlebars for server-side usage?
I am mixing jade with handlebars so that I don't have to write HTML and can have the nice syntax for data-related stuff.
For example, this might be the template for header, header.handlebars.jade
...
0
votes
0answers
158 views
html template haml/jade with PHP?
I used node.js with jade, but I have to change it into PHP.
Is it possible to use haml or jade template with PHP framework?
or
Is there any other similar html template system?
1
vote
1answer
53 views
Prevent server side jade interpreting browser jade template
I would like to pass jade template to the browser from a jade template in the server.
My problem is that the jade template are interpreted by the server at the moment...
Here is how I declare the ...
1
vote
1answer
47 views
in jade, cannot get include to work when within a script
in template, include working fine except when in this script section:
block head2
title Some Title
script
function pageInit() {
include restful.js
restful.init();
}
...
4
votes
2answers
101 views
how to pass variables between jade templates
I am using a template as a base, and want it to be aware of some variables set in the page that is using it...
File: template.jade
vars = vars || {some:"variables"}
!!! 5
head
title vars.some
...
6
votes
1answer
934 views
how to escape <> in javascript underscore template?
when using underscore template i want to interpolate a value in anchor's href attribute like
a(href= "<%= id %>", class='products') //underscore template in jade
but the out put is
<a ...
0
votes
1answer
655 views
Global variable for Jade templates in node.js
I am using node.js with Jade templating system.
Assume, I have these routing rules:
// ./routes/first.js
exports.first = function(req, res)
{
res.render('first', {
author: 'Edward',
...
0
votes
1answer
218 views
How to use multiple blocks from different files?
I have a layout.jade that looks like this:
html
body
block content
block footer
My content.jade looks like that:
extends layout
block content
#Content Welcome
My footer.jade looks ...
0
votes
1answer
331 views
lowercase with Jade template
I'm using jade in a nodejs project
Can't find how to define filters
I have categories that i want to display in a select box, lowercase option values and uppercase option text
select
each cat in ...
4
votes
2answers
2k views
Jade - Loading templates from different directories
I'm trying to work on Peepcode's Node.js Full Stack videos and it seems they're using an older version of express/jade. No mention of using block/extends to render layouts.
The setup used in the app ...
1
vote
2answers
272 views
template inheritance with Express and Jade
I'm having difficulty getting template inheritance to work properly. I'm finding that I can get index/layout working well, but that it's not including other extended blocks. For example, here's my ...
5
votes
1answer
2k views
Jade - Using Block inside script tag
Hi there I'm trying using Jade's blocks and extends for a node.js project, and the ideia is to have something like this:
layout.jade:
head
script
$(document).ready(function() {
...
1
vote
1answer
143 views
Expanding an object to set attributes in Jade
I would like to be able to pass in an object with key/value pairs that represent attributes for an element. Is this possible with Jade?
Any solution that allows me to pass an attributes collection ...
3
votes
1answer
908 views
Compiling Jade from within an existing JS Node context
I am interested in using Jade to create static HTML files of dynamically-generated data. I already have a set of JS scripts that are creating my data while running in Node. What I would like would be ...
3
votes
2answers
269 views
How to pass an object's properties as the locals to an include in Jade?
I'd like to pass an object inside a loop as follows;
data structure:
things = [
{
title: 'foo'
, description: 'bar'
}
, {
title: 'baz'
, ...
0
votes
1answer
342 views
Jade thinking mixin is undefined, but it's not
Why this doesn't work?
extends layout
mixin WhyNotDefined(text)
p #{text}
append content
mixin WhyNotDefined('Hi')
I keep getting error: WhyNotDefined_mixin is not defined
jade@0.20.3; node ...
6
votes
3answers
2k views
How to make Jade stop HTML encoding element attributes, and produce a literal string value?
UPDATE Jade v0.24.0 fixes this with a != syntax for attributes. option(value!='<%= id %>')
I'm trying to build an <option> with jade, where the value of the option is an UnderscoreJS ...
7
votes
2answers
1k views
Jade template as a preprocessor for html
I will not be using node.js in production, but I like jades syntax, so I would like to compile jade template into html when developing.
Given this file structure:
app/
jade_templates /
...
1
vote
2answers
670 views
How can I escape curly braces inside jade templates?
ho can I escape curly braces inside a jade teplate?
(I use jade inside node.js)
I want to render jQuery templates to the client.
The part I want to escape looks like this:
div(class='clear')
...
0
votes
1answer
460 views
Assign layout-level parameter to all jade template views
I'm making my first Node site using Express and Jade and I'm puzzled as to how routing works. I've got a simple route for my index:
var routes = require('./routes');
app.get('/', routes.index);
...
3
votes
1answer
1k views
Rendering jade template with layout (without express)
When you render jade templates in express you can configure your application with 'view options', { layout: true } and the templates rendered will automatically get plugged into the body local of the ...
1
vote
0answers
463 views
hogan.js + jade?
I want to use hogan.js but I currently write all my html in jade. How could I set up a workflow that would allow me to write templates in jade but still compile them with hogan?
Thanks for any help!
2
votes
3answers
427 views
Updating server-side rendering client-side
I have a server-side templating engine, Jade, which I use to render a layout. When the client receives the layout for the first time, there will only be small subsequent changes in the contents of the ...
1
vote
1answer
749 views
Jade template inheritance block content not working
I have layout.jade:
html
include includes/head
body
header
h1 Jumplink design
p web design+creative solutions
include includes/nav
block content
and my about.jade which is supposed to ...
5
votes
1answer
842 views
node.js jade template - custom syntax and replacements?
I'm trying to get jade to automatically generate urls for me:
so if I have a user link like this:
.userLink
a(href="/#{user}") #{user}
I want to be able to replace it with something like ...
5
votes
5answers
714 views
Templating Engine for Node that's NOT Jade
Jade is indeed very neat, but I personally dislike the syntax and look of it. Yeah, being able to write just :
body
h1 Hello
p This is
b bold
Thats cool and all, but I prefer the look and ...
6
votes
2answers
1k views
Is there a jade template engine for ASP.NET MVC?
I've always been searching for a best suitable ViewEngine for me in ASP.NET MVC, and after observing a ton of template engines in either JAVA, PHP, Python, Ruby, NodeJS... I found the jade template ...
4
votes
1answer
442 views
A client-side JS framework with templates and caching?
I use node.js on server side, express.js and jade. I have written a small wrapper function to fill jade templates on the client side. I think I'll use requireJS and jQuery on client side, but have not ...
6
votes
4answers
5k views
JADE + EXPRESS: Iterating over object in inline JS code (client-side)?
i want to implement a google map based on its api. i want to add a path based on coordinates to it. therefore i get my coordinates from my model and want to iterate over the object to fille the map ...
1
vote
1answer
700 views
Can I use plain HTML to write views in the Express framework?
So I started to use node.js along with the Express framework, but I dont know how to get rid of Jade and all the other templates... I want to write my views in plain HTML. How can I do it?
8
votes
1answer
3k views
Benchmarking HAML vs JADE vs HTML in PHP?
I'm interested in the performance of templating languages in PHP. I've been watching node.js tutorials and am really impressed by the use of JADE (http://jade-lang.com).
I see that JADE can be used ...
5
votes
3answers
4k views
Using javascript code in Jade views - if(variable) shows undefined instead of passing
So this is a recurring issue I have and haven't found another example on SO so here goes:
When rendering Jade templates I get 'variableName' undefined even when using -if(variableName) in the ...
0
votes
1answer
2k views
Jade templating “each” function returns empty object
I've had a bug that has been bugging me for days. I'm pretty new to Node and the Jade templating system so bear with me: I'm looking to add stylesheets in the following way:
App.js (Express):
...

