Mustache is a "logic-less" templating library available in a range of languages.

learn more… | top users | synonyms

36
votes
3answers
14k views

How do I accomplish an if/else in mustache.js?

It seems rather odd that I can't figure how to do this in mustache. Is it supported? This is my sad attempt at trying: {{#author}} {{#avatar}} <img src="{{avatar}}"/> ...
36
votes
10answers
12k views

What's the advantage of Logic-less template (such as mustache)?

Recently, I ran into mustache which is claimed to be Logic-less template. However, there is no explaining why it is designed in Logic-less way. In another word, what's the advantage of Logic-less ...
21
votes
4answers
6k views

Can mustache iterate a top-level array?

My object looks like this: ['foo','bar','baz'] And I want to use a mustache template to produce from it something like this: ...
19
votes
3answers
3k views

What's the least redundant way to make a site with JavaScript-generated HTML crawlable?

After reading Google's policy on making Ajax-generated content crawlable, along with many developers' blog posts and Stackoverflow Q&A threads on the subject, I'm left with the conclusion that ...
18
votes
3answers
8k views

What are the pros/cons of using mustache with Backbone.js?

I'm learning backbone.js for a Rails 3 application I'm working on. Backbone uses underscore which, I believe, has its own template engine built in. I've read good things about mustache but was ...
18
votes
2answers
5k views

How to make i18n with Handlebars.js (mustache templates)?

I'm currently using Handlebars.js (associated with backbone and jQuery) to make a web app almost totally client side rendered, and I'm having issues with the internationalisation of this app. How can ...
17
votes
7answers
4k views

Can Mustache Templates do template extension?

I'm new to Mustache. Many templating languages (e.g., Django / Jinja) will let you extend a "parent" template like so... base.html <html><head></head> <body> {% ...
16
votes
4answers
8k views

Handlebars/Mustache - Is there a built in way to loop through the properties of an object?

As the title of question says, is there a mustache/handlebars way of looping through an object properties? So with var o = { bob : 'For sure', roger: 'Unknown', donkey: 'What an ass' } Can ...
16
votes
8answers
11k views

In Mustache, How to get the index of the current Section

I am using Mustache and using the data { "names": [ {"name":"John"}, {"name":"Mary"} ] } My mustache template is: {{#names}} {{name}} {{/names}} What I want to be able to do is to get an ...
16
votes
4answers
2k views

Does a handlebars.js implementation in java exist? [closed]

Currently I'm using Mustache templates ( http://mustache.github.com/ ) both on the client and server-side, using javascript and java implementation respectively. However, there are some limitations ...
15
votes
3answers
3k views

jQuery 1.9 + client-side template = “Syntax error, unrecognized expression”

I just updated jQuery from 1.8.3 to 1.9, and it started crashing all of a sudden. This is my template: <script type="text/template" id="modal_template"> <div>hello</div> ...
15
votes
2answers
2k views

Single page Web App in Java framework or examples?

Has anyone seen an example or done the following in Java: http://duganchen.ca/single-page-web-app-architecture-done-right/ That is a design a single page web app that will work with Google SEO with ...
15
votes
2answers
346 views

How can I force jade to wear a mustache?

This is my jade figurine: section#entry-review-template.template(data-class='entry-review') table thead tr th='Date' th='Title' th tbody When I start adding ...
15
votes
3answers
2k views

How to do advanced i18n with Mustache.js?

It seems Twitter is using a fork of Mustache.js to provide i18n to its templates? Could someone give a brief example of how this is done and perhaps also outline what semantics is necessary to ...
14
votes
5answers
3k views

In Mustache templating is there an elegant way of expressing a comma seperated list without the trailing comma?

I am using the Mustache templating library and trying to generate a comma seperated list without a trailing comma, e.g. red, green, blue Creating a list with the trailing comma is ...
14
votes
2answers
4k views

mustache.js vs. jquery-tmpl

I'm looking at javascript templating for the first time and mustache and jquery-tmpl are the top contenders at the moment. Some of my requirements: templates will live in separate files to be ...
14
votes
2answers
7k views

Mustache.js + jQuery: what is the minimal working example ?

I would like to use mustache.js with jQuery in my HTML5 app, but I can't make all the component work together. Every file is found, there is no problem here (the template is loaded roght, I can see ...
13
votes
2answers
4k views

How to define mustache partials in HTML?

this is my html: <script type="text/html" id="ul-template"> <ul id="list"> {{> li-templ}} </ul> </script> <script type="text/html" ...
13
votes
3answers
1k views

Mustache Scalate vs Mustache Java

I need to pick a Mustache rendering engine for a Scala project of mine. Seems like the only two choices are Mustache-Java and Scalate? Are there any comparisons? Which one is the more ...
13
votes
3answers
3k views

How to cache mustache templates?

I would like to cache mustache templates. I know that I could include mustache templates directly, like this: <script id="mustache-template" type="text/html"> <h1>{{title}}</h1> ...
12
votes
3answers
4k views

calling function with arguments in mustache javascript

Is it possible to call a function with arguments with Mustache.js {{somefunction(somevalue)}} thank you
11
votes
3answers
6k views

Iterating over arrays with mustache

How do I obtain a reference to the current element in the iteration? {{#my_array}} <p>{{__what_goes_here?__}}</p> {{/my_array}} I hope I am just overlooking the obvious.
11
votes
4answers
6k views

Access Nested Backbone Model Attributes from Mustache Template

I have one Backbone model which has an attribute that is a reference to another Backbone model. For example, a Person has a reference to an Address object. Person FirstName LastName Address ...
11
votes
4answers
14k views

backbone.js - collections and views

I understand how to get a collection together, or an individual model. And I can usually get a model's data to display. But I'm not clear at all how to take a collection and get the list of models ...
11
votes
4answers
2k views

DOM tree based Javascript template engines

I am looking for a new Javascript template engine to replace old jQuery Template for my client side templating needs. I'd prefer approach where the template engine deals with DOM trees instead of ...
10
votes
7answers
2k views

Django and Mustache use the same syntax for template

I try to smuggle HTML template in the HTML for mustache.js, however the django template engine remove all the placeholders that should be output as-is to the front-end The template is included in ...
10
votes
1answer
4k views

How to set a selected value in a dropdown list using Mustache.js?

Is it possible to do this with Mustache.js? var data = {"val":"3"}, template = '<select>' + '<option value="1">1</option>' + '<option ...
10
votes
2answers
2k views

row striping and first/last classes with mustache.js

Frequently one wants to treat the first and/or last items in a list differently from the others. is there a way to do that using mustache? what about row striping? (Obviously, one could always use ...
10
votes
4answers
6k views

How to stock my Mustache / Handlebars templates in separate files?

I'm using handlebars.js on a project and I'm starting to have a fair amount of templates. For now they are stored in my main template app file, like this : <script id="avatar_tpl" ...
10
votes
2answers
1k views

Is there a mustache template syntax highlighter or plugin for Eclipse?

I'm looking for a Mustache template syntax highlighter / plugin in Eclipse Does one exist? I don't seem to be finding anything on google, and I don't know how to write my own for Eclipse.
9
votes
2answers
722 views

Is it possible to have nested templates in Go using the standard library? (Google App Engine)

How do I get nested templates like Jinja has in the python runtime. TBC what I mean is how do I have a bunch of templates inherit from a base templates, just filing in blocks of the base templates, ...
9
votes
1answer
2k views

Handlebars partial vs. render vs. template

The Fire Up Ember.js screencast uses partial, template, render to render templates within templates, but I'm still not sure I know which one to use when. In the same screencast the partial is ...
9
votes
1answer
7k views

Mustache partials and code reuse

I'm getting the hang of mustache for a project I've started during the weekend. I'm using the PHP implementation. I have, however a couple of inquiries as I'm not used to the system. How do you ...
9
votes
1answer
1k views

how to use handlebars/mustache and bootstrap typeahead for rendering item

I would like to customize the item which is rendered by bootstrap-typeahead using handlebars template. Looking at the code it seems that the default item is <li><a ...
8
votes
3answers
4k views

How do I use nested iterators with Mustache.js or Handlebars.js?

I would like to use handlebars.js or mustache.js to iterate over a list of families, and then iterate over that family's members. Inside of both loops, I want to display properties of both. However, ...
8
votes
2answers
639 views

Learning resources for Couchapp, Mustache.js, Evently, CouchDB

What are some of the good learning resources that you have come across aiding your application development in CouchApp stack including Evently and Mustache.js?
8
votes
1answer
2k views

Rails End-User Templating Engines: Liquid vs Mustache vs. Others?

I am creating a service in which I want to allow end-users to edit HTML templates for web pages that allows for access to specific "variables" for inclusion in the template. I know that liquid was ...
8
votes
1answer
3k views

how do I get my mustache.js template file included?

I'm working with mustache.js for the first time. All the examples I'm finding seem to talk about putting everything inline, but I want my templates in external files so they can be used in multiple ...
8
votes
1answer
698 views

Handlebars inside of Markdown, inside of HAML

I know that this is a very non-standard use case, but I'm chaining HAML, Markdown, and Handlebars (in SproutCore 2.0), and I'm 1 step away from 'beautiful' code. Intermingling HAML, Markdown, and ...
7
votes
1answer
4k views

Using mustache templates with knockout.js

I wish to use knockout.js, but unfortunately I cannot use jquery-tmpl due to the prequisite of jquery 1.4.2, which (I won't go into it here) we cannot upgrade to. Has anyone got any tips on getting ...
7
votes
5answers
2k views

Dealing with an empty list in mustache.js

I'm using mustache.js to render a template in javascript. I'd like to check if a list is empty or not to hide the <h2> tag in the following example. Is this possible or is mustache.js too ...
7
votes
5answers
3k views

How to stay DRY when using both Javascript and ERB templates (Rails)

I'm building a Rails app that uses Pusher to use web sockets to push updates to directly to the client. In javascript: channel.bind('tweet-create', function(tweet){ //when a tweet is created, execute ...
7
votes
2answers
4k views

Is there a way to set a counter in a mustache iteration?

I have a code that renders a mustache template with some iterations like: {{#items}} some html code.... {{/items}} but I want to place into the iteration the number of item that is rendered, like ...
7
votes
2answers
2k views

HTML templating solution for both ASP.NET MVC and browser?

I'm trying to find an HTML templating solution that will work both on my ASP.NET MVC application (.NET 4, IIS 7.5) and in the browser. The reason is to the the same code to render HTML both on the ...
7
votes
4answers
1k views

Bootstrapping backbone.js models with java server

I'm planning a single page webapp with backbone.js and a java backend running jersey. I am interested in bootstrapping model data into the page on the initial load to prevent additional ajax requests, ...
7
votes
4answers
648 views

How can i share templates between my ASP.NET MVC backend and my backbone.js frontend?

I'm buliding an application in ASP.NET MVC and considering backbone.js for the client side interaction etc.. Ideally when the pages are loaded i'd like to have all the existing content pre-rendered ...
6
votes
3answers
404 views

Backbone.js Memory Management, Rising DOM Node Count

Situation: I'm working on a pretty decently complex single page Backbone app that could potentially be running for 8-12+ hours straight. Because of this, there's a need to ensure that the application ...
6
votes
1answer
780 views

Is it bad practice to use dot notation in Mustache (php)?

I came across this ticket on github: https://github.com/bobthecow/mustache.php/issues/34#issuecomment-805892 The comment states: "Note that use of pragmas is not recommended, but they're there if ...
6
votes
1answer
2k views

Mustache + nested objects

I'm trying to create a tree from a list of tags which have tags inside them. Here's a sample of the JSON I'm using : { "tags": [{"name":"My first tag", "tags": [{"name":"My first tag ...
6
votes
5answers
6k views

Precompile mustache templates or load externally?

It would be useful to have a Coffeescript include function so it could load the external mustache templates when compiling in javascript and not clutter the coffee files. Actually you can load ...

1 2 3 4 5 12