0
votes
0answers
28 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
1answer
40 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
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 ...
1
vote
1answer
41 views

jade block contain only raw text

I would like to have a jade block for my title, e.g. html head title block head_title And then mypage.jade block head_title. raw text here But jade seems to always expect a tag ...
0
votes
1answer
250 views

jade extend a page generated without a layout

My Problem: I cannot get my jade blocks to extend My Setup: Running the latest NodeJS with Express 3 I'm loading some HTML via Ajax using a Post method app.post "/utilities", (req, res) -> ...
1
vote
1answer
353 views

jade blocks how to reuse code properly?

How could I insert arbitrary code ("partials" style) using blocks in jade (after express 3.0) ? lets say i have various templates which inherit from "layout.jade", each one render different views but ...
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() { ...
0
votes
1answer
145 views

jade / express - when to use or not to use layouts

I've just started developing in express and am new to Jade as well. I'm having trouble deciding when it's appropriate to use layouts and when not to. I'm also having trouble deciding when it's ...
1
vote
2answers
961 views

Blocks not working with nodejs and jade

Reading for hours, I am pretty sure I understand how blocks in Jade work. Here is my layout.jade file: !!! 5 html(lang="en") head title= title link(rel= 'stylesheet', href= '/style.css') ...
5
votes
3answers
4k views

jade template engine (under node.js): multi-line block without pipe symbol

I'm currently using Jade on a new project. It seems well-suited to composing webapp layouts, but not for writing static content, such as a web page of elements containing text. For example, to ...