Mustache provides “logic-less templates”. It has implementations in Ruby, JavaScript, Python, Erlang, PHP, Perl, Objective-C, Java, .NET, Android, C++, Go, Lua, ooc, ActionScript, ColdFusion, Scala, Clojure, Fantom, and node.js. It supports lists and lambdas, but does not allow for embedded program logic (as in, for example, Django templates). As implied by the tagline "logic-less templates", that exclusion of logic is by design.
Mustache markup is very simple:
<nav>
<h1>{{title}}</h1>
<ul>{{#navList}}
<li><a href="{{link}}">{{text}}</a></li>
{{/navList}}</ul>
</nav>
The structure of the HTML and {{mustache}} markup play very nicely together.
Meanwhile, in Javascript for example, the usage of the template couldn’t be simpler:
var navhtm = ... //here would be some code to pull in template html*
var navobj = { //data structure to define menu
title : "Main Menu",
navList : [
{ link: "page1.html", text: "Page 1" },
{ link: "page2.html", text: "Page 2" },
{ link: "pageC.html", text: "Page C" }
]
};
//of course, that data structure could come from the server or elsewhere...
//Render the template and stick it into the id="Nav" element using jQuery
$("#Nav").html(Mustache.to_html(navhtm,navobj));
This will result in the id=”Nav” tag being populated with this HTML:
<nav>
<h1>Main Menu</h1>
<ul>
<li><a href="page1.html">Page 1</li>
<li><a href="page2.html">Page 2</li>
<li><a href="pageC.html">Page C</li>
</ul>
</nav>