A templating engine processes templates in a given language, often binding them to a data source, in order to produce an output document.
0
votes
2answers
66 views
Mustache + Sling + CQ5
I'm researching a means of using Mustache templating for the view engine in CQ5, which uses Sling. I'm looking for some advise if anyone has already had experience going into this.
I need to use a ...
0
votes
2answers
140 views
Simple routing and unobtrusive template engine in Node JS
This is a multi part question and I'm a complete newbie to Node so please be gentle:)
I have a very simple Node/express app set up returning an index.html without using routing...
var app = ...
0
votes
2answers
929 views
Twig template engine and truncating text
I've been learning how to use Twig, as per this site.
This is my code, a variation on the tutorial's:
index.php:
<?php
// include and register Twig auto-loader
include 'Twig/Autoloader.php';
...
0
votes
2answers
142 views
Simple PHP templating engine that allows to use PHP expressions insted of inventing its own language
I'm looking for a simple PHP templating engine that allows to use PHP expressions in the substitutions. The "MVC ideal" that templates should contain just plain variable substitutions and nothing else ...
0
votes
1answer
189 views
Interpolate Twig variable/attribute inside value of another Twig attribute definition
Take the following example structure:
{% set paths = {
...
'js': {
...
'jquery': {
...
0
votes
1answer
112 views
Nodejs template system documentation
I want to create my own template system for node.js (just for educational purposes), but I can't find any useful information to start with. Are there any good tutorials out there which could help me?
...
0
votes
1answer
425 views
Handlebars registerPartial() is not working
Here is my code on JsFiddle
Error- Uncaught Error: The partial social could not be found
PS. I have included all the libs.
Thanks in advance.
0
votes
1answer
128 views
Where to render Ajax search results in an object oriented approach using Coldfusion?
I'm updating a Coldfusion8/MySql site with a fairly complex search from "spaghetti to object" (= separate view, controller and process - no framework, everything handled by Jquery Mobile).
I need to ...
1
vote
3answers
265 views
php mvc + templating engine
I have been out of PHP world for awhile, and now I am back. Having used mvc pattern extensively in asp.net, I would love to use it again in php. I used codeigniter in 2006, is it still the standard? I ...
43
votes
2answers
8k views
What are the differences between Mustache.js and Handlebars.js?
Major differences I've seen are:
Handlebars templates are compiled
Handlebars adds #if, #unless, #with, and #list
Handlebars adds helpers
Allows use of {{this}} in blocks (which outputs the current ...
4
votes
3answers
3k views
JS templating system with Backbone.js
I am looking at some good templating systems to be used alongwith an MVC framework like Backbone.js
I am aware of one such system (jQuery Templating). However, the same has been discontinued for some ...
1
vote
1answer
1k views
Twig PHP: Incrementing and Subtracting A Value In A Foreach
I am working on a project that loops 100 times with repeating data. Every 8th post I am inserting an advertisement block, because I am using the index value to number each block output I need to ...
1
vote
2answers
94 views
Business user templating language for Java
I'm looking for a secure templating language for Java that business users can use.
When I say secure I mean you can't enter in something that will take down the server or hog a thread.
Ideally I ...
0
votes
1answer
283 views
how to check true condition in iCanHaz (Moustache Template engine)
I've this json return
data = [
{ firstName: "Christophe",
lastName: "Coenraets"},
{ firstName: "John",
lastName: "Smith"}
];
I want to display each object in a li list ...
1
vote
1answer
69 views
Which templating lib/engine would you recommend in java?
I'm wondering which tempalte engine I could use on my project. I know Freemarker and Velocity, but maybe there are others much better ?
Maybe a google lib ?
I looking for libs in java, any pointer ...
3
votes
1answer
283 views
Javascript templating library that infers used variables and dependencies
Is there a Javascript templating library that automatically infers the variables used in the template and the possible dependencies among them? If I for example have a template that looks like this ...
0
votes
2answers
81 views
Are there any more Unobtrusive Server-side Scripts like hQuery for easier templating?
I came across this interesting templating tool, what the author calls as hQuery which is an 'Unobtrusive Server-side Scripting'. [More information here - https://github.com/choonkeat/hquery ]. It is ...
0
votes
1answer
318 views
REST support within a java templating engine such as StringTemplate, FreeMarker, Velocity or Tiles?
I'd like to compare some templating engines that supports creating RESTful URLS for templating header/body/footer pages in a java application. I don't want my pages to have a jsp, .st or .ftl ...
0
votes
1answer
115 views
PHP template syntax - is this correct?
I'm creating a website that's template-driven, but not using PHP template packages like Smarty or Twig, it's entirely my own coding.
This is one template (mypage.php): (moved to fit in on page)
...
2
votes
3answers
650 views
Creating a simple but flexible templating engine
I am trying to build a basic templating engine. Like the template engines already available as open source, I am using search and replace techniques.
However, as the search and replace have to be ...
0
votes
1answer
114 views
Are ERB and require_relative compatible?
Are ERB and require_relative compatible?
I got this message
<internal:prelude>:31:in `require_relative': require_relative is called in erb (LoadError)
What does it mean?
1
vote
4answers
2k views
If statements in template system
How can I parse, let's say, {if $var > 2} or {if $var} in a .tpl file in my own version of a templating class. I do not wanna use smarty as I don't need all their plugins. I just want include, if, ...
4
votes
4answers
376 views
Can any Java based templating engine work with Websphere Commerce? [closed]
I'm a UX developer at a retail company, we use Websphere Commerce for our e-com sites. The app dev guys are in complete control of the HTML output we have to file bugs with them to get something as ...
1
vote
2answers
360 views
HTML Generator, Gallery Generator or Templating?
SMALL VERSION OF THE QUESTION: " I need a lib for python or program (pref. for Linux) that receives a list of urls for images and gives me the hmtl for a table (maybe easy to configure(rows and look))
...
0
votes
1answer
34 views
Frontend Intertag Communication
I've had a question that I've been wondering for a while. I'm making a templating system for front-ends where tags are interpretted (like Smarty). I was wondering if there is value in having the tags ...
1
vote
0answers
94 views
Templating engine for .NET Compact Framework
Does anyone know any templating engine that works under .NET Compact Framework 3.5?
3
votes
2answers
2k views
How do I use an IF statement in a loop with StringTemplate
This displays nothing:
$Articles:{
$if(i!=1)$
display in between articles
$endif$
$it.Text
}
This displays as expected
$Articles:{
...
12
votes
5answers
3k views
Any advances on John Resig's “JavaScript Micro-Templating”?
So I've seen this post on JavaScript Micro-Templating by John Resig and I have a need for a micro-templating engine like this.
But he saids in the post that he'll keep a more-refined version in his ...
0
votes
3answers
222 views
what templating engine options are there for PHP?
I wonder what options there are for templating in PHP? If the templating code can be very similar to PHP, it'd be best.
9
votes
1answer
1k views
What are the main differences between HAML, SASS/Compass and ERB?
I'm looking for a templating engine. What are the important factors to consider when choosing among HAML, SASS/Compass and ERB?
0
votes
4answers
1k views
Rails view templates
Besides Markaby and Haml, are there any better Rails View Templating mechanisms?
32
votes
10answers
9k views
Can you recommend a .net template engine?
I am looking for a .net templating engine - something simple, lightweight, stable with not too many dependencies. All I need it for at the moment is creating templated plain text and html emails. ...