Jade - Template engine
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
33 views
Reload project in runtime on files changing
I'm making a little web project with scala, scalate and jade templates. The problem is when i'm changing .scala or .conf files, sbt automatically recompiles them and reloads project, but it doesn't do ...
0
votes
1answer
39 views
Assign variable value to a block in jade
Is it possible to assign the value of a variable to a block? Either it is not possible or I'm doing it wrong.
Example:
- var $foo = "bar"
block #{$foo}
div.a_class Some content
0
votes
1answer
62 views
Http get multiple json files from different API endpoints using node express
I'm looking into the most efficient way to get multiple JSON files from different API endpoints using node.
Basically i'd like to store each JSON object in a variable, and send them all to Jade ...
1
vote
3answers
49 views
How can I embed a CSRF token in a JavaScript file?
I have a Node.js application in which I have implemented CSRF. It's working fine, and when I had some JavaScript inline in a JADE file, I simply used #{token} to get the token into the JavaScript.
...
0
votes
2answers
50 views
Accessing json objects within objects with Jade and express
I'm pulling my hair out a bit at the moment. I can't seem to figure out how to access the "media" content within the following json object using Jade.
{
"summary":"Jose Mourinho names his ...
1
vote
1answer
15 views
windows jadejs watch not working properly
platform: win7
node-version: v0.10.4
jade-version: 0.29.0
I want to use jade options to watch the slider direcotry in:
d:/webwork/
my command is:
jade -w -P ./slider
and get the cmd result below:
...
2
votes
3answers
112 views
How to use NodeJS + ExpressJS to pass an array to Jade for display?
I come from a very "functional" style of programming (PHP, Lua, C) and I'm trying to transition my thinking to the MVC model NodeJS uses. Currently, this is a very steep learning curve for me.
I've ...
0
votes
2answers
61 views
How to render precompiled jade templates in a nodejs express app?
I have a nodejs app that uses Express and Jade.
I want to precompile the jade templates for better performance. I have been able to convert the jade to javascript using jade --client to compile all ...
-1
votes
1answer
30 views
Jade multiline Object / Array
I need to know how to split into lines objects / arrays in jade.
This works fine:
object = [{foo: bar, bar:foo},{foo: bar, bar:foo},{foo: bar, bar:foo}]
This doesn't:
object = [
{foo: bar, ...
1
vote
1answer
44 views
Render array passed from Express with Jade
Most of the questions pertaining to this all seem to be about passing the server-side JS object into a client-side JS object. Maybe I'm missing something, but all I want to do is render HTML using the ...
0
votes
1answer
15 views
Jade comments at the end of a tag
I want to know if it's possible to put comments in jade at the end of an html tag, in the output file.
example:
<div class="header">
....
</div> <!-- ./this comment -->
0
votes
0answers
73 views
Bootrstrap in Express.js with LESS: include bootstrap folder in public/lib/?
I am totally a beginner in Express.js, and I am trying to build a simple website using Express,js, Jade and Less. The way I created my folder project is:
$ mkdir myProj
$ cd myProj
$ express ...
0
votes
1answer
109 views
Angular.js - Redirection not working
I have somes difficulties to understand the behavior of Angular.js routing
Here is my code
my app.js:
'use strict';
var app = angular.module('myApp', []).
config(['$routeProvider', ...
0
votes
1answer
22 views
Identify which table entry I clicked
I am trying to create a dynamic table which should have as entry in one of it's columns a button which launched a bootstrap modal. I don't know how to check which button was clicked and how to fill up ...
0
votes
1answer
101 views
Is it considered bad practise to use HTML in Jade?
Jade looks like a cool templating engine and I think I'll be using it for my next project. However, some of the syntax doesn't make sense to me.
What do you get by doing this:
ul
li
...
0
votes
0answers
40 views
how to change layout in express js from back-end using jade template engine
for example
i have this file:
app.get('/foreach',function(req,res){
res.render('home/foreach');
});
which render page below:
extends ../shared/layout
block content
...
4
votes
1answer
163 views
Using jade with wysiwyg markdown to allow users to edit content
I believe don't re-invent the wheel unless you absolutely have to. So I don't want to start coding away something that has already been coded, or a lot of people are contributing to it already.
I ...
0
votes
1answer
28 views
Duration of Video in Express.js: NaN
I am trying to get the total duration of a video, in Express.js. Below I have shown my Code in Jade. Initially I include the video in the webpage.
video(width='320', height='240', ...
0
votes
0answers
71 views
How to encode decoded-html in Node.js?
I'm playing around with Node.js and have connected to my mysql-database and are fetching
some blog-records, but the contents are decoded html in the db. I can't seem to encode.
I've tried it in the ...
0
votes
1answer
64 views
express app throwing error while displaying dynamic chart using flot in the jade client
While trying to display the realtime data using flot chart, I am getting the following error in the client code
Uncaught Invalid dimensions for plot, width = 1584, height = 0
Cant figure out why ...
0
votes
2answers
23 views
Jade interpolation within javascript
(Note, this is the Scalate Jade, if that makes a difference)
I have the following route:
get("/fruit") {
contentType = "text/html"
jade("fruity", "fruit" -> "apple")
}
And this fruity.jade ...
0
votes
1answer
51 views
Unable to load installed module in the jade client
Can anyone please point out why I am getting 404 error when loading the socket.io module in the client side ? I think something is wrong in the way I am calling the socket.io module in the layout.jade ...
0
votes
1answer
39 views
Jade - Accessing a variable passed to it
So I have a user stored in session when they log in on my Node.js application. I have admins and default users, if I output #{session.user.role} in the Jade template, I get default or admin appear. ...
3
votes
3answers
205 views
Change the “No file chosen”:
I have a button "Choose file" as follows (I am using Jade but it should be the same as Html5):
input(type='file', name='videoFile')
In the browser this shows a button with a text next to it "No ...
0
votes
1answer
39 views
Using “style='foo'” in jade to modify css related by pseudo-element “:before”
EDIT: I have tried to implement user1737909's advice. Using classes (i.e., .pie.size-{size}:BEFORE) instead of attribute selectors (i.e., .pie[data-value={size}]:BEFORE) has gotten me past the first ...
0
votes
2answers
137 views
Javascript - Display 'n' number of textboxes (generated by jade) based on input.
I have a page with a set number of dropdown's on it at the moment (4), these dropdowns are used to select data from a list and submit it. It is used for selecting teams for a tournament, so at the ...
0
votes
1answer
92 views
Express.js: Validation of forms with text boxes and buttons
I am working with forms in Express.js and I am using express-validator for validation. The code I have shown below is a "form" with two text boxes, a choose file button and a submit button. When the ...
-1
votes
1answer
45 views
Node.js / JavaScript - JavaScript window variable breaking functionality
So on my Jade template, I am passing it a variable through the route which contains an array of names.
Here is the JavaScript from that template:
script(type='text/javascript')
window.teams = ...
0
votes
2answers
51 views
Jade: text box change the value = “ …”
I am extremely beginner in Jade and Html and I am trying to build a form in Jade. The problem I am having is with a basic text box as follows:
input(type='text', name='sessionID', value = 'valueID')
...
0
votes
1answer
40 views
Jade / JavaScript - Access data being passed to Jade
I'm passing a Jade template some data, which is in JSON form, so for example here me outputting the names of all the teams in the Jade template:
p Teams:
br
-for(var i = 0; i < ...
0
votes
1answer
90 views
JSON / Jade - Cannot output JSON variable to Jade template
I'm passing some JSON data to a Jade template, but can't seem to print the JSON data to my Jade template. This is an example of the JSON which is stored and passed to the Jade template:
{ name: 'Team ...
0
votes
0answers
39 views
Having videos in Jade
I am making a website using Node.js and Jade in Expressjs and I want to embed a video. I also want to have a video player that has the capabilities to fast forward and rewind. I was wondering if Jade ...
0
votes
1answer
52 views
How to pass a nice formated json file to jade templating engine using livereload or codekit?
I'm using Jade for static template work and its amazing, but one thing that i haven't succeeded at is to use a properly formated (with indentation) json file for passing parameters to my jade files. ...
0
votes
1answer
92 views
Node.js, Express, Jade - Seperate layout files
I'm working on some project with Node.js, Express and Jade, where I'd like to seperate layout files. Inside the main file is already seperated header, but I don't know how to do this for sublayout ...
0
votes
1answer
32 views
Automatically send object to every res.render()
I have a config object that I want to use in pretty much every view on my express appplication. It looks something like this:
{
"url" : "http://whatever.com",
"more" : "yadda yadda"
}
I want to ...
1
vote
1answer
90 views
What kind of client-side templating should I use with Node.js? [closed]
I am planning to start development with Node.js and I decided to use a stack of MongoDB and Express.js with a topping of Ember.js. When it comes to choosing templating for my views, I found two ...
0
votes
1answer
38 views
in jade, how do you used the same block name in more than one level?
have a working base file and extension, page.jade and layout.jade
wish to put an extension between them that will modify page's block before layout gets it. possible to retain the block names and do ...
0
votes
1answer
18 views
jade if behaving inconsistent
I am using expressjs, I have in my app the following:
app.get('/profile',index.profile);
app.get('/',index.home);
and in layout.jade
...
if typeof(username)!=='undefined'
li: ...
0
votes
1answer
44 views
How to make table equally spaced and wrap word
I'm using twitter bootstrap, but I think it has nothing to do with the solution, so here is the code:
div.span12
table.table.table-hover
thead
tr
th Device Name
...
0
votes
1answer
33 views
parse variable as Jade tag
Is it possible to parse JS variable as Jade tag? What I am trying to achieve is basicaly:
- var tag, numnodes = X
- if (numnodes == 2) tag=".span2"
- else tag=".span3"
tag
<do something here>
...
0
votes
1answer
40 views
Jade templates django - Use captured url value in urls.py
I have "static" javascript templates I want to serve with my Django application. Usually you put them in the static folder and that's it. The problem here is the templates aren't really static, they ...
0
votes
1answer
37 views
How to reduce code duplication in jade?
I am a beginner to both web development and node.js. I am trying to build a very basic news website with node.js and express. In the home page, I hope to display some featured news, and in the page ...
0
votes
1answer
44 views
Accessing flash map from Jade template in Scalatra
I'm creating application using Scalatra and I'm using Scalate/Jade for templating. I try to add flash support to my application. I mixed FlashMapSupport into into my Servlet and I'm able to access ...
0
votes
1answer
32 views
How might I make a template file in Jade so I can include it in other pages?
I've made a header file that I would like to include in all my pages, it also includes the navbar and has the body in it to in a nutshell it is like this
!!!
html
head
title
body
I would like ...
1
vote
1answer
69 views
How do I handle CSS with Node.js?
I'm trying to use just straight vanilla Node.js with no frameworks other than what is necessary for educational purposes. I currently have this setup:
var fs = require('fs'),
jade = ...
0
votes
1answer
71 views
Using python code in pyjade
I'm trying to generate a list using pyjade, like so:
ul
- for i, (label, link) in enumerate(tabs)
li(class="selected" if i == selected_index else "")
a(href=link)= label
But I see this ...
0
votes
1answer
28 views
jade to html with new line
in jade, I use:
each item in items
li
a(href='http://www.#{item.href}/') #{item.name}
the html output is ok, but in only one big line.
how I can get a newline between every list element ? ...
0
votes
1answer
39 views
How do I compile jade on request rather than just server start?
I'm looking to compile my jade on server request/response that way I can make changes to the jade file and see it in real time, rather than having to restart the server every time. This is the fake ...


