Tagged Questions
A template engine is software that is designed to process templates and content information to produce output documents.
89
votes
19answers
24k views
Is there a template engine for Node.js?
I'm kind of falling in love with Node.js not because you write app code in javascript but because of its performance.
I really don't care a lot about how beautiful a server side language might be ...
65
votes
27answers
18k views
What javascript templating engine do you recommend?
Do you have experience with a Javascript templating engine, one that is stable, easy to use and has good performance?
I need to do apply the same template many times for different data. I prefer to ...
47
votes
14answers
6k views
What is your single favorite Python templating engine? [closed]
Name your single favorite Python templating engine (and describe why it's your favorite).
37
votes
9answers
4k views
How do I use Django templates without the rest of Django?
I want to use the Django template engine in my (Python) code, but I'm not building a Django-based web site. How do I use it without having a settings.py file (and others) and having to set the ...
35
votes
21answers
10k views
Suggestions for a Java-based templating engine?
Do you know a better template engine than FreeMaker or Velocity?
31
votes
19answers
2k views
Why should I use templating system in PHP?
Why should I use templating system in PHP?
The reasoning behind my question is: PHP itself is feature rich templating system, why should I install another template engine?
The only two pros I found ...
22
votes
11answers
11k views
Template Engines for Spring Framework
I've taken quite a shine to the Spring Framework and would like to get into it a bit more. I have noticed that aside from plain vanilla JSPs there are various template engines for use with Spring MVC, ...
21
votes
9answers
8k views
What is the fastest template system for Python?
Jinja2 and Mako are both apparently pretty fast.
How do these compare to (the less featured but probably good enough for what I'm doing) string.Template ?
21
votes
12answers
4k views
PHP as a template language, or some other PHP templating script?
Is PHP on it's own a good enough templating language, or should one use something like Smarty to write PHP templates in?
18
votes
7answers
6k views
C++ HTML template framework, templatizing library, HTML generator library
I am looking for template/generator libraries for C++ that are similar to eg. Ruby's Erb, Haml, PHP's Smarty, etc.
It would be great if I it would sport some basic features like loops, if/else, int ...
17
votes
16answers
2k views
Why choose an XSL-transformation?
For a current project the decision has to be made whether to use XML and an XSL-transformation to produce HTML or to directly use HTML-templates.
I'd be interested in arguments for or against the ...
17
votes
4answers
2k views
What is the best code template facility for Emacs?
Particularly, what is the best snippets package out there?
Features:
easy to define new snippets (plain text, custom input with defaults)
simple navigation between predefined positions in the ...
16
votes
8answers
6k views
Send asp.net mvc action result inside email
I'd like to use my Action in asp.net mvc, as template engine, that results in form of string, that I could send in email.
Pseudo-Code:
public ActionResult Register()
{
...
16
votes
11answers
4k views
What is the best way to insert HTML via PHP?
Talking from a 'best practice' point of view, what do you think is the best way to insert HTML using PHP. For the moment I use one of the following methods (mostly the latter), but I'm curious to know ...
15
votes
3answers
4k views
Mako or Jinja2?
I didn't find a good comparison of jinja2 and Mako. What would you use for what tasks ?
I personnaly was satisfied by mako (in a pylons web app context) but am curious to know if jinja2 has some ...
14
votes
7answers
7k views
C# template engine
I am looking for a stand-alone, easy to use from C# code, template engine.
What I want to do is create an html and xml files with placeholders for data,
and fill them with data from my code.
The ...
13
votes
9answers
398 views
What are the real advantages of templating engines over just using PHP?
I develop my web applications using only PHP for the view files and I don't feel limited in any way, but I hear there's a consistent number of developers advocating "external" templating engines. So ...
12
votes
7answers
548 views
super-light templating system in PHP that doesn't allow php code inside templates or use eval
I'm searching for a very basic PHP templating system. Right now I'm using:
/**
* Renders a single line. Looks for {{ var }}
*
* @param string $string
* @param array $parameters
*
* @return ...
12
votes
6answers
11k views
How do I execute ruby template files (ERB) without a web server from command line?
I need ERB (Ruby's templating system) for templating of non-HTML files.
(Instead, I want to use it for source files such as .java, .cs, ...)
How do I "execute" Ruby templates from command line?
11
votes
5answers
4k views
Velocity vs. FreeMarker
Velocity or FreeMarker?
They look pretty much the same, even the syntax?
What to use? Or when to use what?
10
votes
5answers
396 views
template engine for .NET environment
I am trying to find a template engine to use in .NET environment. It would be used to generate messages/email/notifications that would be sent out to thousands of people, so performance is definitely ...
10
votes
8answers
3k views
Is the NVelocity project dead? Are there alternatives?
I'm looking for a template engine for .NET/C# to generate email notifications in my application. I read about NVelocity in the past and think it would fit my needs, but it seems this project is dead.
...
10
votes
5answers
3k views
Which Java MVC frameworks integrate easily with StringTemplate?
It's hard to see how StringTemplate integrates easily (or not) with popular Java web MVC frameworks.
Which Java MVC frameworks integrate easily with StringTemplate?
A good answer:
mentions one ...
9
votes
4answers
4k views
What's a good HTML template engine for C++? [closed]
Possible Duplicate:
C++ HTML template framework, templatizing library, HTML generator library
Planning to write a website in C++. Would like to use a template system like Clearsilver, but ...
8
votes
0answers
147 views
Python tools for template animation / unobtrusive server scripting? [closed]
Are there good Python libraries that provide an elegant solution for what is called "template animation", "unobtrusive server scripting" or "binding data to markup"?
In other words, I'm looking for ...
8
votes
3answers
101 views
php / templating vs echoing
i would like to know which one is the best for performance:
1- use smarty template ( or any other better)
<?php
$Smarty = new Smarty();
// set all the default variables and other config
...
8
votes
4answers
342 views
What are the differences between framework and template engine?
What is the difference between frameworks like zendframework and a template engine like smarty?
Which should I start with as a beginner?
7
votes
3answers
184 views
Templating engine for Emacs?
I've seen different templating engines for Emacs (including yasnippet), but what I want is a different beast. Most templating engines aide while you're writing. What I want is more a "text generator" ...
7
votes
4answers
1k views
best template engine in java
I am looking for a template engine with iteration, bifurcation, markup alike and that takes a string for template input rather a file.
That's because I have my own way to supply the input template, ...
7
votes
5answers
224 views
Offline HTML templating
I'm designing a simple website with no dynamic content that I want to be light and portable — no PHP or other server-side scripting needed, or wanted. I'm running into a question that I've had a few ...
7
votes
2answers
2k views
Can I use T4 programmatically from C#?
I am writing software that produces C# code. Mostly I am using StringTemplate and StringBuilder.
Is there any way to use T4 templates direct from my code?
6
votes
3answers
670 views
template engine both for JS and PHP
Is there a simple Template engine that works both on client side with JS and on server side with PHP (I want to have the same template definition for both use cases).
6
votes
2answers
2k views
Declare CSS style outside the “HEAD” element of an “HTML” page?
my use-case is the following :
I'm composing an HTML page by using parts that are valid HTML fragments but not valid pages,
like Divs; these elements are using CSS to manage their style.
I'd like to ...
6
votes
1answer
843 views
jinja2: get loop index of outer loop
In jinja, the variable loop.index holds the iteration number of the current running loop.
When I have nested loops, how can I get in the inner loop the current iteration of an outer loop?
6
votes
6answers
2k views
Which template technology should I use with CherryPy?
I'm in the process of building a web application using cherrypy.
What template technology do you recommend I use?
5
votes
1answer
381 views
Client-side templating language with java compiler as well (DRY templating)
I want to be able to define templates once and use them to render html from both the server-side as well as the client-side. (DRY principle and all that)
The API that I'm envisioning is simply this: ...
5
votes
3answers
1k views
Using Jade Templates (jade-lang.com) client-side
I'd like to use Jade templates client-side. Preferably generated using the Rails 3.1 asset pipeline. I can't really figure out how to do this.
Anyone who've stumbled upon the same problem and found a ...
5
votes
3answers
465 views
Is it there a Ruby equivalent of Java's Wicket?
The idea would be to replace ERB with templates that are pure XHTML and that the view would be pure code manipulating the template content.
Have this been done already ?
5
votes
3answers
426 views
What's the most Pythonic XHTML/HTML parser/generator/template module that supports DOM like access?
It should be able to create, modify and read X/HTML in a highly object oriented way that still feels DOM like but is not obese, and is really Pythonic.
Preferably it would deal with malformed HTML ...
5
votes
5answers
3k views
Should I use Mako for Templating?
I've been considering a templating solution, although my choices are between Mako and Genshi. I find templating in Genshi a bit ugly, so I'm shifting more towards Mako.
I've gone to wonder: what is ...
5
votes
2answers
633 views
Get argument value from TextTransform.exe into the template
I can't found some example how can I use argument -a when I use TextTransform.exe to generate code from templates. In MSDN is following description for argument -a:
"Specifies a parameter that a ...
5
votes
6answers
2k views
Rendering C# Objects to Html
We have bunch of Domain Entities which should be rendered to an html format, which shows their detail in a pop up window.
I would be glad to do something like this:
Product product = new ...
5
votes
10answers
3k views
Smarty benchmark, anyone?
I am considering Smarty as my web app templating solution, and I am now concerned with its performance against plain PHP.
The Smarty site says it should be the same, however, I was not able to find ...
5
votes
5answers
732 views
Safe PHP Template Engines
What are some PHP template engines that offer a simple, short syntax? What we're looking for is:
Conditionals (if/else)
Foreach loops
Variable replacements
Able to create custom tags (i.e., for URL ...
4
votes
2answers
32 views
Is it possible to set a break point in a Razor template?
Is it possible to set a break point in a Razor template? One might argu that a template should be so "dumb" or "minimal" in it's logic that you should never have to debug them -- which might be ...
4
votes
1answer
94 views
Express.js custom template engine (plate)
I am trying to get plate template engine to work with express.js. My initial attempt was this:
app.register('.html', {
compile: function (str, options) {
var template = new ...
4
votes
3answers
132 views
What is the best way to generate flat files from templates, and parse them back
Here's the problem I have, I need to generate a flat string file with a rather complex (imposed) structure based on field length and start and stop positions. It file will be generated from a .Net ...
4
votes
3answers
401 views
Create new file from templates with bash script
I have to create conf files and init.d which are very similar. These files permit to deploy new http service on my servers. These files are the same and only some parameters change from one file to ...
4
votes
1answer
146 views
How do I display “image X of Y” in a Lightroom web engine Lua template?
I'm creating a new "web engine" (i.e. gallery format) for Lightroom, which uses Lua templates to generate HTML for the gallery pages.
I've got both the SDK and Programmers Guide from here: ...
4
votes
1answer
1k views
twig - pass function into template
Currently I place my function in a class and pass an instance of this class into template and call my required function as a class method.
{{ unneededclass.blah() }}
I need to do like below
{{ ...