Jade - Template engine
0
votes
0answers
13 views
Using an exposed object as value or helper in Express.js with jade templating?
I'm exposing (for testing purposes) an object and a named function:
var express = require('express')
, expose = require('express-expose')
, app = express();
// ...
// Expose with 'utils' ...
0
votes
3answers
29 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/ ...
1
vote
2answers
34 views
Node,express,jade rendered pages doesn't data-bind with knockout.js
I'm running a Node server with express which renders jade. I'm trying to make my client side use knockout.js but the view never updates... I don't get any errors in the console and I just can't figure ...
1
vote
0answers
25 views
Jade to Dust Parser?
I recently wrote using Jade Template for NodeJS. When talking with my manager.. I found that we use Dust within company. Thus I was required to switch over to dust.
While following the DRY ...
0
votes
0answers
16 views
Listing post with Docpad and Jade
I try to list my blog post content from another directory inside blog directory, it only output the jade content of the .jade file instead of rendered HTML content.
blog dir -> travel.html.jade, ...
0
votes
0answers
25 views
Jade Template with Backbone/Marionette
I'm trying to render a table using a Marionette CompositeView/ItemView and am running into issues with the jade template. The table "shell" is rendered correctly for the composite view but the ...
0
votes
2answers
20 views
Jade template engine / How to set a background image
I would like to set a background-image to my HTML page rendered with Jade.
Does anyone know how to achieve this?
Thanks
0
votes
2answers
26 views
Jade variable attribute names
I have a variable called current which is used to set the checked value of an html input
so current can be either '' (blank) or checked=true
Since you cant set HTML attributes to false, I can't do ...
0
votes
1answer
12 views
Access mongoose non-schema values in Jade
I have a really weird problem in Jade where I cannot access the values that aren't defined in the Schema.
I'm using strict:false on my schema and saving values to it. My data looks like this:
{
...
-1
votes
1answer
42 views
Javascript input form
I have this datepicker function:
!!!5
html
head
link(type='text/css', href='http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css', rel='stylesheet')
...
0
votes
1answer
35 views
Express & Jade - max Block Nesting
i use Express 3x + Jade + bootstrap +..etc
my block/extend structure looks like this
.layout.jade (only head stuff)
.topNav.jade (only top nav)
.sideNav.jade (sideNav and control center interface) ...
1
vote
2answers
35 views
MongoDB query from node.js (express-coffeescript-mongodb)
I'm new to database queries with noSQL databases and have a quick question.
Essentially I want to retrieve the 'name' of all fields that have 'publishedImage' set to 'true'. I would like to store ...
1
vote
1answer
27 views
Adding navigation to a partial in Docpad
Is it possible to add the site navigation to a partial file?
I like to keep things clean in my documents and really prefer seperating out the navigation but I have been having problems in Docpad ...
0
votes
1answer
63 views
Make rest call from express
Currently struggling with a issue with express, node.js (and mongoose). I have set up a lot of REST functions that I can redirect to that is working.
From my app.js:
app.get('/users', user.list);
...
1
vote
1answer
32 views
Pass PHP variable to Jade.PHP
I have a Jade template, and I want to pass a PHP variable $str into this template and show it.
So in the template I put
{{$str}}
and then it got rendered like:
<title><?php echo $str ...
0
votes
1answer
26 views
Date picker in Jade
I am stuck trying to get a datepicker to work using Jade. Framework is node.js and express.
I load the javascripts in index.jade like this:
link(type='text/css', ...
0
votes
1answer
50 views
Title not defined…node.js, express,jade, twitter bootstrap
Im currently trying to learn node.js and I am working with express and jade. I am trying to get twitter bootstrap working but am running into issues... here is my error:
ReferenceError: ...
0
votes
2answers
41 views
Nodejs Backbone Templates
I have worked a lot with rails, requirejs and backbone and know how to use haml coffee templates in rails.
App = new Backbone.Marionette.Application()
App.addInitializer (options) ->
...
1
vote
1answer
13 views
jade doesn't let me use include #{variable} in a mixin
I want to print an include as a result of a mixin, but jade wants to parse the include when it first reads the mixin.
mixin myHeader(name)
div#{name}
h1 #{name}
include #{name}
!!! ...
0
votes
0answers
25 views
different value of same session variable for different users
hieeeee...
I am developing a multi user system using jade and jsp.
I am using a servlet named servletjsp.java(i am executing this servlet for the very first time when i start netbeans) in which i am ...
0
votes
3answers
42 views
Node.js Express + Jade (Active Class on Lined Item)
How would I set an active tag to a class depending on the URL?
In the example below '/' (Home) is set to active.
.nav-collapse.collapse
ul.nav.top-2
li.active
a(href='/') Home
li
...
0
votes
1answer
28 views
How do I format jade forms?
I'm trying to refactor my app to use jade instead of ejs but am running into some problems setting up a login form.
Here's my original form in ejs:
<% if (message) { %>
<p><%= message ...
0
votes
1answer
18 views
Using a global wrapper template in Express/Jade
I've had a quick skim of the Jade documentation and I can't seem to figure out how to apply a wrapper to all templates that I output.
How is this usually done?
0
votes
1answer
26 views
Why aren't all my images showing?
I'm using Express.js with Jade and running into an issue. I've got 6 images but 2 of them won't show up on the page. I can go to local:3000/images/a.png and see them all but not see them on my page? ...
0
votes
1answer
32 views
Line Breaks Inside Jade Templates
I was looking around for a solution to include a line break inside a title. The normal fixes for this are to include an actual line break inside your code...
<div title="Ron
...
0
votes
1answer
42 views
How do you set jade basedir option in an express app? (the “basedir” option is required to use “extends” with “absolute” paths)
Going through the peepcode nodejs video and recreating the app on the current express/node versions I've ran into a small issue.
file structure
site
- apps
- - authentication
- - - views
- - - - ...
0
votes
1answer
33 views
How to display a Mongo field on Nodejs with Mongoose and Jade?
Currently everything I see are displaying an entire document, not just one field. How would I display just one field?
I have tried the following but I'm getting "undefined"s where I don't see ...
1
vote
2answers
155 views
Is Jade or EJS better for Node.js templating? [closed]
Jade versus EJS, which one should I use and why?
Are there any other express-compatible template engines that are good and why?
1
vote
1answer
23 views
How can I iterate a multi-dimensional array with Jade template lang
I'm wondering if it is possible to iterate a multi-dimensional array, in Node.js I'm returning an array that has an object inside of it, and I'm putting it into an array so that I can push to it, but ...
0
votes
1answer
24 views
Jade and whitespaces
I'm starting to play with jade and got stuck with this:
I want to output something like:
hey! this
is pre
text!!!
I use tabs for indentation in templates and if I write spaces at the ...
0
votes
1answer
19 views
How to return a / respond with (java)script from express.js using JADE
I'd like to respond to ajax calls on my express.js application with javascript scripts that will be evaluated in the client. How do I handle that with JADE as the template to construct these scripts ...
0
votes
0answers
22 views
Grunt jade compiles and merges multiple jade files into single html
Yeoman / grunt / jade
I have folder structure like :
App/
App/jade/user.jade
/user.edit.jade
/user.details.jade
when jade complies the files it creates single html file as ...
1
vote
0answers
34 views
Use Jade as Durandal View Engine?
Durandal looks like it supports custom view engines:
http://durandaljs.com/documentation/View-Engine/
But am having a hard time understanding what to change or add to use Jade templates as my ...
0
votes
1answer
20 views
Output php directly into a jade template
I have a jade template that needs a bit of php to populate a checkbox. The below code works fine if the checkbox needs to be checked but I need to remove the attribute completely if ...
0
votes
1answer
30 views
tabblable inside tabbable twitter bootstrap
im making my admin panel... with many forms that i want to clasify by category so im trying to do something like this
div.tabbable
ul#first-tab.nav.nav-tabs
li.active
...
0
votes
2answers
25 views
How to pass a complicated object array into Jade template?
I have such jade snippt:
div.comment_list
- var clist = comment_list
each comment in clist
div.comment
div.comment_detail
span.commentator ...
1
vote
1answer
38 views
How output jade pretty print in sails?
I try to output pretty print from jade in sails. I tried to configure jade like this:
module.exports.bootstrap = function (cb) {
// Development environment
if (sails.config.environment === ...
1
vote
2answers
64 views
Passing the request object to jade in express.js
What could be wrong with passing the request object to the jade renderer?
This seem like a simple way to work. Especially as express.js already uses the request object as a vehicle from append data ...
2
votes
1answer
45 views
Jade, Why variables are sent in single quotes in one case and unquoted in another?
I put some data from MongoDB into a Jade template as simple as this:
span(data-id=job._id)
span= job._id
But for some reason I get first span int the output HTML markup looking like <span ...
2
votes
2answers
98 views
Express/Node.js : Render custom javascript as response
In my application, I need to provide an API (something like the Google Maps javascript API), through which I can send some custom javascript (with some session and request related information) as the ...
0
votes
1answer
35 views
Writing Pure HTML in Jade
Jade appears to choke on WebGL shader/fragment blocks when writing in Jade format, so I would like to write them as straight HTML while still being able to write Jade around it. Is this possible?
1
vote
1answer
19 views
Can i use, within the same function: “response.render” and “response.writeHead” options?
response.render('welcome-page.jade', {
title : 'Welcome user!',
remoteUser : request.remoteUser,
id : "identification"
});
// To Write a Cookie
response.writeHead(200, {
'Set-Cookie': ...
0
votes
1answer
14 views
Why Jade complains an interpolation variable is undefined?
When I compile the below code snippt, Jade complains that user_name and user_level are undefined:
div.outer
div.info
div.user_name #{user_name}
div.user_level span.level ...
0
votes
1answer
32 views
Attach helpers to Jade when running client side (in browser)
I have made a single page app powered by node js (Express) with a mongo db. I have used jade for templating and have some templates rendered in the browser. The templates render fine except I am ...
0
votes
1answer
27 views
jade layouts failing to extend
I cannot get jade files to properly extend each other. Here is my index.jade file:
!!! 5
html(lang='en')
head
... scripts and stuff here...
body
include navbar
div.cont
...
0
votes
0answers
44 views
Cordova JS file not loading using Jade Template Engine with Express and Node
I have an Android Phonegap applications which on its WebView displays content from a node.js server. Now, because I am testing some code triggering based on Location Based Services, it is important ...
0
votes
1answer
173 views
node.js angular jade client and node.js rest api
Are there any good examples or guidance anyone can provide for structuring an app like this?
Client (client.company.com)
Node.js
Angular
Jade
ExpressJS
Server (private) (server.company.com)
...
0
votes
2answers
68 views
How do I load phonegap/cordova with jade?
I am developing a Web Application using node.js, express and jade. I have the following jade template which I am seeing using a WebView in a Phonegap application:
doctype mobile
html
head
...
1
vote
1answer
45 views
Refreshing information in Node.js from filesystem with jade template engine
I'm currently writing a node.js app currently using: express, jade, and js-yaml. The YAML parser loads the file that I need to load easily.
require('js-yaml');
var file = require(path);
The ...
0
votes
1answer
20 views
How can I loop through docs to send a lot of mongojs data to a jade template?
So, I'm using mongojs. To get values into a rendered view, it was my understanding that one had to do something like this:
app.get('/someurl', function(req, res) {
...


