Jade is a template engine.
1
vote
2answers
12 views
jade template ignoring first space on line after pipe symbol
I have a minor detail question regarding jade templates
I'm seeing the following template:
p(data-ng-show="submitting")
i.icon-cog.icon-spin
| Authenticating...
being converted to this HTML
...
0
votes
1answer
20 views
Set checked attribute of checkbox in Jade template based on input from Node
I want to set a checkbox's 'checked' attribute based whether the category id exists in an articles category array.
each category in the categories object has the fields '_id' and 'name', example:
{
...
0
votes
1answer
19 views
each in loop in jade template unescape issues
I am trying to use a json object in my jade template and for some reason I can't seem to unescape it so the each item i loop is seeing every single character rather than the object variables. I have ...
0
votes
1answer
18 views
How do I write predicate instance methods with mongoose?
A semi-noob node guy here. In my jade templates ... I'd really love to be able to have this interface:
if currentUser.isMemberOfGroup(name)
-// dosomething
However, determining a user's ...
0
votes
0answers
20 views
SpineJS / Hem + Jade Templates
How do you get Spine/Hem to render Jade templates? In the last line of the documentation it says you just have to include jade's runtime.js as a lib in slug.json but when I do that and run my ...
0
votes
1answer
19 views
call app.get inside response.render
How can I call another express route inside response.render. Following is my code snippet. I would like to render performance.jade when /pages/performance is requested and populate the jade with data ...
1
vote
1answer
19 views
Pass variables to jade template from commandline
I'm planning to use jade templates to generate different htmls depending on if it is in development or in production. At this time, I'm not planning to write code in node. Given this, is it possible ...
0
votes
1answer
15 views
REST form (like form_for in Ruby) for NodeJS
I have a form for adding videos to the database. I would like to use the same form for editing the videos or creating a new one. In ruby this is easy using scaffolds. But how would I achieve the same ...
0
votes
0answers
40 views
Node.JS how to capture field value and send to server side using Jade
I have a Node.JS express app using Jade as my front end. I know how to pass variable from the backend to the front end, but how do I pass data back to server side. For example I have a grid that is ...
0
votes
1answer
22 views
Escaping newlines in Jade scripts
I have a Jade template with lines like these:
html
head
title Person Details
script
var Person = function () {
this.name = "#{person.name}",
...
0
votes
0answers
15 views
jade android for native application
I'm looking for a way to develop a native android application ( with no server to run agents in ) . Is there a way to run an agent inside android and not like the jade fpr android tutorial chat ...
1
vote
2answers
30 views
Regular expression to get jade includes
Can you please give me any help to get jade includes with regular expression.
http://jade-lang.com/
My code looks like this
html
body
.container
include header.jade
...
1
vote
2answers
36 views
Jade lang in a regular web app without node
Is it possible to use Jade in a regular web app without running on Node js? The question may sound crazy as Jade engine is written in node but wanted to find out if it can can be used oustide of ...
0
votes
1answer
19 views
jade multi level inheritance
I'm having problems with jade multi level inheritance. My code is on the line of:
layout.jade:
head
block head
include head
body
block body
index.jade:
extends layout
block append body
...
0
votes
1answer
54 views
Angular JS and Web Sockets
I am trying to get Angular JS working with web sockets, and after getting a basic set up from Angular web socket seed on Github, I am still facing a little problem with two way data binding. I am ...
0
votes
1answer
21 views
jade extends and include not working together
I'm having a problem that if I use an include after and extends the blocks in the included file do not get used.
//layout.jade
block content
//entry.jade
extends layout
case form
when 'special'
...
0
votes
1answer
35 views
Why a jade template is rendered by express from an action form and not from an Ajax request?
I've been searching to try to understand this, but I got a mixed and unclear understanding. The thing is when I make a get request to app.get:
app.get('/youarein', function(req, res) {
...
0
votes
1answer
20 views
converting html attribute 'class' to jade
i tried to convert simple html element into jade but it will not work
i used online tool http://html2jade.aaron-powell.com/
the element i tried to convert is this:
<input type="checkbox" ...
0
votes
1answer
30 views
Dynamically create modals with different id's in Jade and Javascript
I'm using Nodejs/Express/Jade/Bootstrap to try to create an inventory system where I click on a room on a map (300 rooms), and a modal (boostrap) appears with a list of the items in that room (and ...
0
votes
0answers
34 views
How to pass a mixin reference into another mixin as a mixin parameter in jade4j
What I want to achieve is as follows in jade4j -
mixin mixin_a()
p This is mixin A
mixin mixin_b(mixin_reference)
p This is mixin B
+mixin_reference()
+mixin_b(mixin_a)
Here I am passing ...
0
votes
0answers
25 views
Form does not postback when submit is clicked, jade, node.js
I have a form created with jade, it does not postback when submit button is clicked.
I have looked at many similar problems, I tried the solutions, which include ensuring that the input fields all ...
0
votes
0answers
16 views
Jquery Mobile Multipage + Jade
I am using Jade to render a jQuery Mobile multipage. I am new to Jade so please bear with me.
The main page renders fine. However when I try to click a link to go to one of the subpages, nothing ...
1
vote
1answer
29 views
Pass data back to caller from the template
I wish to have a template render some data which needs to be passed back to the caller of render. For example, I am using a template to generate emails, for which I need a subject as well as the body. ...
0
votes
1answer
54 views
JADE: Convert HTML to JADE issues
Im trying to convert the following code from HTML to JADE:
<a id="bgndVideo" href="http://www.youtube.com/watch?v=Df8ofF1mbdA" class="movie {opacity:1, isBgndMovie:{width:'window',mute:false}, ...
0
votes
1answer
16 views
Jade - Unexpected indentifier
I'm getting the "Unexpected identifier" error whenever I try to compile Jade using Prepros.
This is my code:
doctype 5
html(lang="en")
head
title Hello World in Jade!
...
0
votes
2answers
39 views
sending mail with nodemailer - email from field incorrect
Trying to set up a contact form with nodemailer. Here's what's in my app.js:
// EMail configuration
var smtpTransport = nodemailer.createTransport("SMTP",{
service: "Gmail",
auth: {
...
0
votes
1answer
18 views
function inside jade template undefined
I have the following function inside a jade template:
-function prettyDate(dateString){
-var date = new Date(dateString);
-var d = date.getDate();
-var monthNames = [ "Jan", "Feb", "Mar", ...
0
votes
0answers
25 views
variables not being passed with form to jade template
I have a simple app for showing/creating/editing/deleting details of courses, using express/jade. The app works very well, with most of the functions passing correctly. However, two of the variables ...
0
votes
0answers
43 views
angularJS binding not working
I have a problem with Angular and Jade. I have my index.jade that it looks like this:
extends ../layouts/default
block content
script(type='text/javascript', src='/js/angular.js')
...
2
votes
0answers
52 views
express view cache acting funny
I'm running into some funny stuff with the view cache in express/Jade. The controller fetches an article from MongoDB via Mongoose and hands it to the res.render function. However, after running for a ...
0
votes
1answer
39 views
trying to format a date on jade template
I have an index.js:
exports.index = function(req, res){
db.courses.find(function(err, currentCourses) {
res.render('index', {
currentCourses: currentCourses
});
});
};
And on my ...
0
votes
1answer
19 views
retrieving data from mongodb in jade template
I'm new to node and mongodb and am trying to render a database query in a template, but I get the error that the property is undefined:
Cannot read property 'firstname' of undefined
Here's my ...
0
votes
1answer
22 views
What's wrong with this Jade data binding?
What's wrong with this Jade? Thanks.
input#a
h1= document.getElementById('a').value
The error given is blank.
0
votes
1answer
39 views
Express and Jade Ajax Page
I'm a PHP/Javascript guy but I am very new to ExpressJS (Node module). I just curious how does https://www.learnboost.com/ or new.myspace.com do their page via ajax.
The ajax response is json and ...
0
votes
1answer
19 views
I need to convert string Agent ID to AID which is JADE data type
I have to save Agent ID in dataBase. I stores it in string form. I use following code to convert it into string.
String AgentID = this.getAID().toString();
While retrieving it back from database, ...
0
votes
0answers
33 views
Getting error when trying to make a customized user profile with jade layout?
I want to make a basic user profile that is different for each user once they are logged in.
Looking for advice/help in figuring out why this is not working. I am using nodejs and mongodb. Currently I ...
0
votes
4answers
37 views
Create nested <p> tag in Jade JS without trailing newline
How does one do the following in Jade JS?
<div id="container">
Temperature<p id = "temp">00.00</p>
</div>
i.e., create a nested tag without a newline.
I have tried:
// ...
0
votes
1answer
62 views
Find by specific code results in null
I'm very new to Nodejs and i'm trying to find a record in my db(mongo) by submitting a code and crosschecking the record to see if it exists.
I'm not really clear on how to approach this to get to an ...
0
votes
1answer
26 views
Jade gives empty page(No error)
I'm new to nodejs and jade and following a small blog tutorial. I got the jade page working properly without extending layout. The moment I extend layout in my index.jade the page goes blank. Any idea ...
0
votes
0answers
18 views
Dynamic Jade includes
I have this code:
show.jade:
foreach promo in promotions
include _promotion
_promotion.jade:
img.thumb(src="#")
I'm trying to set the src of the img tag dynamically with promo.image_url, ...
0
votes
0answers
21 views
How to submit updated rows of table in bootstrap + Jade and NodeJS?
I want to implement a inline editing data table. And above the table, I will have "Save Changes" button to update all changed rows.
Let's say in each row, I have:
...
1
vote
2answers
113 views
Twitter Boostrap Sticky Footer and Jade
Working with Express, Jade, and Twitter Boostrap - trying to use the Sticky Footer example. Everything renders - EXCEPT that the footer is not sticky. Kind of defeats the purpose. Anyone have any ...
0
votes
1answer
18 views
Use PyJade on Command-Line Like Jade
I'm developing on an old operating system that can't run a perquisite version of Node.js for using Jade. However, I think it can install pyjade.
Can I use pyjade on the command line to convert files ...
0
votes
0answers
50 views
Unable to run javascript code within jade block
This is my first post so please forgive for any formatting issues.
I am new to Jade programming as well as a novice to JS. While working on Jade I was unable to run javascript within a jade block. ...
0
votes
1answer
23 views
How do you tell Jade to keep code format when compiling
I am using Jade with nodejs and express. When I call res.render on my jade code, it converts it to html. However, the html has no line breaks. Can I tell jade to preserve code formatting?
1
vote
0answers
75 views
object has no method setup jwplayer
I am calling this javascript file from jade
-if ...
-else
div#container
script(type='text/javascript')
jwplayer('container').setup({
file: '/path/to/file.m3u8',
width: '0',
...
0
votes
1answer
39 views
Handlebars conditional checked property from Jade template
I'd like my handlebars template that's served to the client to look like
<input type='checkbox' checked={{isChecked}}>
or
<input type='checkbox' {{#if isChecked}}checked{{/if}}>
How ...
0
votes
0answers
41 views
how to use both ejs and jade in one nodejs & express project?
I want to use ejs for partials and use jade for individual pages, how to use both in one nodejs & express project?
-1
votes
0answers
74 views
Set up a node.js site with mongodb
I am a 13 year old kid and I have made an existing website at http://middleschoolnotes.org. I publish notes on it for students to use and study from and it's run on php.
I want to revamp this site ...
0
votes
1answer
34 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' ...


