Top "Templating-engine" questions

A templating engine processes templates in a given language, often binding them to a data source, in order to produce an output document.

What are the differences between Mustache.js and Handlebars.js?

Major differences I've seen are: Handlebars adds #if, #unless, #with, and #each Handlebars adds helpers Handlebars templates are compiled (Mustache …

handlebars.js mustache client-side-templating templating-engine
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 …

asp.net templates viewengine templating-engine
Pass JavaScript object/hash to Handlebars helper?

Is it possible to pass a JavaScript object/hash into a Handlebars helper call? I'd like to do something like …

javascript handlebars.js templating-engine
How to create a custom Twig function class, without using a static method?

I can create a Twig extension for my project like this class Functions extends Twig_Extension{ public function getName(){return …

php twig templating-engine
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 …

php templates templating templating-engine
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 …

javascript jquery jquery-plugins backbone.js templating-engine
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 …

javascript templating-engine