Tagged Questions
The templating-engine tag has no wiki summary.
22
votes
9answers
5k 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. ...
10
votes
5answers
2k 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 ...
8
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?
7
votes
2answers
210 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))
...
4
votes
2answers
203 views
Can any Java based templating engine work with Websphere Commerce?
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 ...
3
votes
1answer
161 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 ...
2
votes
3answers
198 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 ...
2
votes
2answers
820 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:{
...
1
vote
2answers
41 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 ...
1
vote
1answer
42 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 ...
1
vote
4answers
407 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, ...
1
vote
0answers
65 views
Templating engine for .NET Compact Framework
Does anyone know any templating engine that works under .NET Compact Framework 3.5?
0
votes
1answer
37 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 ...
0
votes
2answers
50 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
107 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
39 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)
...
0
votes
1answer
63 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?
0
votes
1answer
30 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 ...
0
votes
3answers
151 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.
0
votes
3answers
935 views
Rails view templates
Besides Markaby and Haml, are there any better Rails View Templating mechanisms?