Jade - Template engine
3
votes
0answers
161 views
Jade-style blocks in Ruby templates (Haml?)
is there any template engine in Ruby which supports something like Jade extend and block (https://github.com/visionmedia/jade#template-inheritance)? This is an awesome feature, compared with the ...
2
votes
0answers
154 views
extending jade templates and compiling them at client side
I am using jade for templating in my webapp. But i am using it at client side. Hence the whole compilation of the jade template is done on client's machine. But I am not able to use the extend feature ...
1
vote
0answers
22 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 ...
1
vote
0answers
32 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 ...
1
vote
0answers
34 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
0answers
68 views
replacing root relative paths in a wintersmith jade template
Is there any way I can use a dynamic relative path in links instead of root relative paths in a wintersmith template?
I cannot use root realtive links such as src="/scripts/main.js" because the ...
1
vote
0answers
412 views
Serving Up Slim/Jade with Rails Assets Pipeline
I'm writing an Angular.js app and it needs to grab static HTML files for its various views.
I'd like to use Slim or Jade to write these static pre-compiled views, and serve them up using the Rails ...
1
vote
0answers
25 views
Does jadeify download templates 1 by 1 on demand?
I am thinking of using Jade templates on client side (with BackboneJS). Seems like I can use jadeify. But was wondering, how does it work? Does it download each template 1 by 1 or compile all ...
1
vote
0answers
184 views
{{ STATIC_URL }} with pyjade in django
I have some trouble adding my CSS in my template using {{ STATIC_URL }}. The tag does not work inside the link markup, but works anywhere else.
This:
{{ STATIC_URL }}
correctly translated into
...
1
vote
0answers
202 views
node.js jade+express table with array of elements
I was wondering if the .jade for the files are necessary when invoking with res.render('login', { locals: { title: 'Hello - Please Login To Your Account' }});. Assuming login.jade exists. I was also ...
1
vote
0answers
338 views
Data-native-menu =“false” not working in jquerymobile.
I have tried to bring a popup here.
What i need is, 'label' and 'textbox' should come in the same horizontal line.
Also my dropdowns are not working eventhough i have given data-native-menu="false".
...
1
vote
0answers
134 views
TypeError while compiling Jade template
I have this jade template that started causing the following TypeError.
TypeError: /home/jared/code/fiestah-admin/views/items.jade:11
9| a(href=urlFor('item details', {
10| ...
1
vote
0answers
422 views
node js express twitter api login
im a newbie with nodejs, actually i need to do a twitter login with the twitter API, i have been using this example ...
1
vote
0answers
41 views
How do I get the filename of the executing jade script
Is there a global object that is accessible from within a jade template with various parameters?
Is there a global variable with the path of the currently executing jade file?
!!! 5
html
head
...
1
vote
0answers
188 views
Bootstrap modal appearing under background while using jade
I'm a starting on node.js and jade, I got an app in google app engine working with twitter bootstrap.
Problem When I converted the same html to jade though, the modal isn't behaving as it should, ...
1
vote
0answers
87 views
Vundle: activate Jade highlighting?
Mac OSX 10.7, Vim 7.3
I have installed Vundle for Vim, and I have included these lines in my ~/.vimrc:
Bundle "gmarik/vundle"
Bundle "pangloss/vim-javascript"
Bundle ...
1
vote
0answers
137 views
Agent mobility between containers
I wrote a piece of code representing an agent traveling across containers. my agent has a Cyclic behavior that use a simple switch-case statements to travel across containers. it runs at the ...
1
vote
0answers
464 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!
0
votes
0answers
12 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
24 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
0answers
26 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) ...
0
votes
0answers
24 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
0answers
21 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 ...
0
votes
0answers
41 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
0answers
42 views
Jade -> Blade template conversion
I opened a ticket on Github -> https://github.com/bminer/node-blade/issues/170, but just in case anyone can help here:
I'm converting from Jade to Blade using ExpressJS as the base Node.js HTTP ...
0
votes
0answers
82 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
0answers
43 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
...
0
votes
0answers
79 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
0answers
43 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
0answers
54 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
0answers
34 views
Add class in Jade template
I have a header included in a Jade page, and use it for navigation. Among others I have this list:
ul
li foo
li bar
li baz
Now there's the pages using the header:
html
body
include ...
0
votes
0answers
25 views
How to use Piler with standard HTML instead of Jade?
I am using Node.js with Piler (https://github.com/epeli/piler).
The example at the project website shows how to use Piler with an index.jade file.
index.jade:
!!! 5
html
head
!{css}
!{js}
...
0
votes
0answers
112 views
Is there a better way to write this Jade when using Knockout?
I love Jade for its terse syntax but when doing some basic Knockout binding, it's getting ugly:
section
h2.page-title(data-bind='text: title')
div(data-bind='foreach: customers')
.well
...
0
votes
0answers
51 views
Agent Not Getting Run
I think i am missing something in my project. I need agents to perform specific task that i assign. I am using JADE. Inside the action() i wrote a for loop to display numbers 1 to 10.
While running no ...
0
votes
0answers
26 views
getEnvValue error on Windows 7
I am having problems with running a nodejs app that connects to FB. I am running nodejs on windows 7 (64 bits), nodejs v 0.8.22.
The problem is that when I run my application (node web.js) I get the ...
0
votes
0answers
113 views
Tags and autocomplete on node.js with Jade and Bootstrap
i'm trying to implement a tagging feature like here on stackoverflow, but the combination of jade, jquery is not something i can overcome so far... I am using bootstrap so bootstrap-tagmanager seems a ...
0
votes
0answers
72 views
Nodejs - Russian doll caching
http://37signals.com/svn/posts/3112-how-basecamp-next-got-to-be-so-damn-fast-without-using-much-client-side-ui
Hi there - I am looking to achieve a similar effect to the cache regenerating as ...
0
votes
0answers
44 views
Rails with Jader gets 'failed to require “fs”' error
I am trying to use client side Jade templates that are precompiled by Ruby on Rails and available through JST.
I added the jader gem
gem "jader", "~> 0.0.8"
In configuration/initializers I ...
0
votes
0answers
33 views
Jade ClientSide Template Inheritance
Jade inheritance in clientside give me this error:
Error: failed to require "path"
Any solution?
or is it possible to use inheritance on client side?
0
votes
0answers
170 views
change color of checkbox text at run-time
A JFrame object F1 has a JPanel object P1. The program reads values (time) from a database table and for each value read, it adds a checkbox to P1. Thus each checkbox text will be a time value ( ...
0
votes
0answers
21 views
Define a new ObjectSchema in jade
I'm working with jade and have some agents which communicate with each other. I can design new messagetypes like for example a bookinfo (String name, float prize, boolean availible). But I can only ...
0
votes
0answers
150 views
On android ,How to implements translucent materials by GLSL?
As 3d software (3dmax, maya) handles the translucent materials such as jade, wax
Mostly through coloring shader (material ball).in opengl es 2.0,If I want to achieve
the same effect of the ...
0
votes
0answers
69 views
Jade and Express - Block in Block
Little Question to Jade and Express here. For me it is not possible to use Blocks in Blocks ...
So let's assume my layout.jade looks like this:
!!!
html
head
scripts meta tags and other stuff ...
0
votes
0answers
117 views
Passing data from Mongodb to view using Node
A Commonly asked question but I simply cannot get it to work,
I'm trying to in the smoothest way possible pass all items that I get from my mongodb query to my Jade view 'index'. Preferably so that I ...
0
votes
0answers
118 views
Jade 'each' iterator is iterating extra object properties?
I'm using node, express, and jade. I seem to be iterating over two extra object properties added by jade. I'm passing in rows which is an array of objects.
app
conn.query( 'SELECT * FROM invoice ...
0
votes
0answers
162 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?
0
votes
0answers
126 views
Can't use Jade Mixin More Than Once
EDIT: Nevermind. Fixed and corrected in here. Was an indention issue in the Mixin. Will leave this up if anyone wants to try this.
I'm attempting to use JSON to populate a navigation mixin and there ...
0
votes
0answers
67 views
How to display map in Jquery Mobile UI?
I try to display map in Jquery Mobile UI for long time.But I didnt get what i required.
My JADE FILE IS(JADE IS LIKE HTML):
script(type="text/javascript", ...
0
votes
0answers
51 views
Starting a new jade agent in Ubuntu
I have a directory of java class that defines some agents jade.
I want to start these agents through the command line in Ubuntu. I used java -cp lib/jade.jar:vnu/ jade.Boot -gui -platform-id platform ...
0
votes
0answers
32 views
what are the methods names or how to use these in jade framework ? Action,Goal,Motivation?
i have developed a simple agent model in z-eves so i want 2 know how to implement this in jade.. i just want to know what are the method names of these or how jade implements them .. just 1 line ...


