A template engine is software that is designed to process templates and content information to produce output documents.

learn more… | top users | synonyms

0
votes
1answer
25 views

widgets template system using node.js with dust server side templates

I'm trying to create a page with widgets on it using Node.js and Dust as a template engine. I would like the widgets to be standalone as possible with their own css, js and html. Which of the follow ...
0
votes
0answers
3 views

Blox CMS deleting templates from production

I need to delete a template in the production environment in BLOX CMS, how do can I do this? I am working on templates in BLOX CMS (developed and run by TownNewns) I've ran into the problem where once ...
0
votes
0answers
13 views

Template Engine: performance-wise, string replace vs selector ->data approach?

I was just thinking.. w/c is better/faster/more efficient example scenario one: 1) js generates rows of html markup (divs for a list content) 2) js selects each row and fills in dynamic data on ...
0
votes
1answer
21 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
18 views

Making a php template for blog page

I'm quite new to the whole php scene but I have managed to make a php header and footer and include them on my pages so I dont have to edit the header and footer on each page now. My next challenge is ...
0
votes
0answers
6 views

document templating; a graphical approach

I was recently given an assignment at my job to update some documentation for different departments and am looking for a template solution. Its about 125 documents, some building off one another as ...
1
vote
1answer
37 views

Create dyanamic List Row layout Programatically

Thanks for reading my query. We are looking for a template based solution to list row where each list row might have different-2 field and their alignment which will be driven by server in the form ...
0
votes
1answer
55 views

Blank white space on top of the webpage

What could the possible cause blank space on top of the page I want to provide photo for clarification but due to low reputation in stackoverflow I couldn't upload it. I am using Smarty as php ...
0
votes
2answers
33 views

How to create global variables accessible in all views using Express / Node.JS?

Ok, so I have built a blog using Jekyll and you can define variables in a file _config.yml which are accessible in all of the templates/layouts. I am currently using Node.JS / Express with EJS ...
0
votes
1answer
18 views

What javascript templating engine is usable with bookmarklets?

I have a bookmarklet that defines a bunch of divs I use for a script. Currently i am just using $('<div/>').css({}).addClass() etc.. but I would like to separate the divs from the code to ...
1
vote
0answers
53 views

What is the future of playframework 2 in terms of web-templating and MV* [closed]

I have heard that Play Framework 2 will go to use spray instead of netty. Spray itself believes that "The recent trend of moving web application logic more and more away from the server and ...
0
votes
3answers
47 views

How to I make this PHP function more efficient?

I want to find out a more efficient way of going about this function: <?php function zipError($title, $desc) { echo '<style type="text/css">'; echo 'body { ...
0
votes
2answers
51 views

html template + json data -> static html deploy

is it possible to have: - a static html template - a JSON with some data and create static html file(s)? For example i have to make a portfolio and i code html template: ... <h1> {title} ...
1
vote
1answer
40 views

How to use json_decode with Smarty

Its my first time working with Smarty Template Engine and I am having troubles translating the following PHP json_decode statement into a Smarty friendly code. The output is an array since I use the ...
0
votes
1answer
41 views

symfony2 twig render nesting sub directories

I seem to be having problems with twig render nesting To explain further I have the following view layout structure resources .. config .. public .. etc .. views .. WeekBreakDown ...
0
votes
4answers
41 views

Customize not only editor template but the outer html

In MVC.Net 3 I can customize the way String and other primitive type are render using EditorTemplate. For instance if I have a EditorTemplates/String.cshtml @Html.TextBox("") I get the default ...
0
votes
1answer
61 views

Create mutually exclusive, not overlapping regexes

A template engine processes both {{foo}} and {{{bar}}}, they correspond to different treatments. Currently, the source is processed with preg_replace's like so: {{\s*(.+?)\s*}} and {{{\s*(.+?)\s*}}}. ...
0
votes
1answer
33 views

Jade: How to extend base-templates based on value of a variable

I have two "master-templates" called ios.jade and android.jade plus multiple "child-templates" that should extend either ios.jade or android.jade based on the value of a variable. Unfortunately I ...
0
votes
1answer
12 views

PHP Pear ITX add and replace block file

I use PEAR ITX to add template. What my problem is, first 2 time ($number>2) condition match and the $fileName2 is added success, block show as expect; but when the third time ($number==2) condition ...
0
votes
0answers
23 views

Design issue for webapplication built with ajax and template engine

I am currently developing an ajax based web application with a template engine. So if a user presses on a button his pagecontent will change without a page reload as i receive a HTML string from the ...
1
vote
1answer
57 views

Custom onclick function as property in Knockout SimpleGrid

I'd like to display a value within data as a link, and pass a custom function to it's click event (which will eventually display a modal w/ status history). I have properties "isLink" (bool) and ...
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
35 views

Efficient plain text template engine

I have a simple alert system that grabs number on the web, mix them with pre-defined text template to get an alert, and send it to clients. The alert is quite simple plain text, so I would not expect ...
0
votes
0answers
35 views

Issue with self made php template engine [closed]

I made simple php templating engine script (Don't ask why reinvent the wheel??). First code and structure. Index.Php file, $tpl = new Template(); $tpl->load('Sample_Page'); Sample_Page.php ...
-1
votes
1answer
34 views

PHP server-side templating [closed]

Is there a PHP way to do do server-side templating, the same as eRuby, Erubis, or Ember in Ruby? If so, I'd be grateful to know of specific tools and an idea of their plusses and minuses. What I want ...
1
vote
0answers
67 views

Rendering HTML emails with inline CSS using Jinja

As you know, if you are going to send an HTML email, all CSS styling must be inline on the elements themselves e.g. <p style='font-family: Helvetica'> Is there a way I can use Jinja to easily ...
0
votes
2answers
40 views

Twig filter included template

I wanted to do something like this: {{ include("tpl.html")|f }} But that doesn't seem to work, it just printed tpl.html without any filtering, then I tried: {% filter f %} {% include ...
1
vote
1answer
43 views

Does any nodejs template engine support the template inheritance function like PHP Smarty?

Does any nodejs template engine support the template inheritance function like PHP Smarty? {block name=head} default layout content {/block} {block name=head} if page have customize the content it ...
0
votes
1answer
103 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
1answer
40 views

jade template engine - defining new operators

Is is possible to define new operators using jade? Similar to the abbreviations in emmet. I would like to define something like k=v to be <op key="k" value="v"/> and k eq 1 to be ...
3
votes
1answer
68 views

Using Backbone collections in the right way to pass them in the sub view and then in the template engine

I'm trying understand how to work with Backbone collections and to pull them inside the relative template engine created by a sub view. This is the logic i tried in my app: My ajax request returns ...
1
vote
1answer
43 views

StringTemplate don't replace non-matched patterns

suppose I have a template "{man} likes to do {do}" I create the engine ST engine = new ST(template, '{', '}'); The result with do set to sports and no man in the model is: "likes to do ...
1
vote
0answers
21 views

How to manage the variable of the webpage template?

Because of the complexity of the existing webpage templates, I am trying to develop my own template engine with both easier syntax and the funtion I need. When implementing the function of "include ...
0
votes
1answer
49 views

Handlebars templates - Rendering data inside if statement

To the handlebars (version 1.0.0-rc.3) template I am passing two variables, one is the json and the other one is the string containing the current language on site. self.template = template({ data: ...
0
votes
1answer
43 views

How to access data inside if statement in Handlebars templates

To the handlebars (version 1.0.0-rc.3) template I am passing two variables , one is the json and the other one is the string containing the current language on site. self.template = template({ data: ...
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
88 views

PHP possibilities in Slim Template language for Ruby

In PHP I can do this: <div class="foo <?php if($a) echo "bar"; ?> "><?php if ($b) echo "</div>"; ?> It is incredibly convenient. I can break a string in any place, ...
0
votes
1answer
51 views

Slim templates: Can't render a template, get syntax error

I'd like to use full html syntax with Slim. I don't want the cryptography they offer. But I think it's impossible. Here's my html code and Slim throws an error. The target: I want not to output an ...
0
votes
2answers
69 views

node.js and Handlebars: HTML compiled is escaped

Im using handlebars in a node aplication, and I have trouble. This is the template index.html {{CONTENT}} This is the code var fs = require("fs"); var handlebars = require("handlebars"); var ...
0
votes
0answers
61 views

preg_replace_callback vs while loop line by line for template compiler

i built php class for parsing html templates , and i used preg_replace_callback function for parsing template while loops & if conditions , for loop , ... etc i repeated the function many times , ...
0
votes
1answer
140 views

Loading html into bootstrap modal breaking jquery inside modal

I am using a PHP framework (Fat Free F3) with a template engine to piece together the design I'm working on. The main template and all the .js files are being loaded on layout.htm. Inside of ...
0
votes
1answer
44 views

How an included partial insert code into parent's block?

What I want to do is to add the scripts block in dropdown.swig added to scripts block in template.swig. My usage pattern could be wrong. I've a working code using ejs-locals template engine but I ...
0
votes
1answer
41 views

Using Database Variables for PHP Template Engine

So i wrote a template engine and it works, but i need help adding a feature to it. Here is the code for the main part: public function parseFileContents($contents, array $values){ ...
-3
votes
1answer
106 views

When to use the jade.js template engine [closed]

I have learned that jade.js is a popular template engine running on server side. My question is: when or for what reason, jade.js is a better choice? I choose node.js as web server with my ...
0
votes
1answer
133 views

How to have dynamic navigation items in a TWIG template using ZF2 and ZfcTWIG

Good day, I am lost on how to implement what I want in ZF2 since I'm new to it. I have a site that uses ZF2 and ZfcTwig module and I want my TWIG template to have a dynamic navigation based on the ...
0
votes
2answers
69 views

Razor template variable scope

Are variables I define in a shared layout _Layout.cshtml within scope of a View page? _Layout.cshtml varibles: @{ ViewBag.url = "http://www.website.com/site/"; } Index.cshtml: <a ...
-2
votes
1answer
45 views

how to make a database based templating engine without using eval php [closed]

I'm creating a CMS i want to save my templates in the database for easily Adding , Editing and deleting templates but the templates my contain a PHP code so my question is how to support templates ...
2
votes
1answer
202 views

What is the difference between Mustache.js, Handlebars.js and Underscore.js? [closed]

I would like to choose a template engine for the Backbone.js framework I'll use inside my MVC application. I've read Backbone.js is compatible with Mustache.js, Handlebars.js and Underscore.js by ...
1
vote
2answers
52 views

Add quota around each string in a list in jinja2?

The variable in Python : names = ["a", "b"] What I write currently in Jinja2 template: c({{ names | join(",") }}) What I get using the template above: c(a, b) However, what I really need is: ...
0
votes
0answers
111 views

Handlebars.js - nesting output from a #each loop

I'm trying to output a list of cards as a stack as shown in this fiddle. This requires turning the one-dimensional list into a nested list. I'm currently doing it using jQuery with this loop: var ...

1 2 3 4 5 14