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

learn more… | top users | synonyms

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 ...
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 ...
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}}"/> ...
0
votes
2answers
150 views

icanhaz/mustache loop (iterate through elements) js error

I'm trying to get icanhaz/mustache loop working, as defined in this answer and I'm getting following error in browser console: Uncaught Error: Syntax error, unrecognized expression: <option ...
0
votes
2answers
501 views

Mustache JS Template with JSON Collection

Hi this is my first attempt to use MustacheJS with a JSON webservice in .net Currently I am struggling I can't seem to find what I am doing wrong setting this basic example: My Webservice is ...
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 ...
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 ...
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 ...
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 ...
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 ...
5
votes
2answers
5k views

Handlebars Template rendering template as text

I created a helper in Handlebars to help with logic, but my template parses the returned html as text rather than html. I have a quiz results page that is rendered after the quiz is completed: ...
2
votes
1answer
780 views

How to render one element of an array in mustache

If I have an object like z = {"sname":"mike","lname":"michael","V":[1,2,3,4,5]}; Is there some way to specify that one element of V is to be rendered? What goes in the template in place of ?????? ...
5
votes
3answers
4k views

Mustache Templating: nested templates

How can I use a nested template within mustache? Is there a way to do the same? var tmpl="{{#data}} {{values}} Name: {{name}} //{{another_templ({{name.value}})}} {{/values}} {{/data}}" Hope you ...
4
votes
1answer
2k views

Mustache.js - display key instead of value

I am using this data here: http://pastie.org/3231052 - How can I display the key instead of the value using Mustache or Handlebars? [{"interval":"2012-01-21", "advertiser":"Advertisers 1", ...
3
votes
1answer
965 views

Using mustache to fill in a html tag argument

I'm trying the append an identier (id) to the href below using mustache Template: <div id='tmpl'> <a href='#product_detail?'{{id}}>link</a> </div> var template = ...
2
votes
2answers
803 views

How is internationalization configured for Hogan.js?

I'm looking to use hogan.js to create html form a template in the browser. I've read that hogan supports i18n, but I can't find an example of how this works. How do you pass the translated text to ...
0
votes
3answers
2k views

AMD Module Loading Error with Mustache using RequireJS

I am following the tuturoial here: http://backbonetutorials.com/organizing-backbone-using-modules/ and all I would like to do is use Mustache instead of underscore.js for my templating engine in a ...
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 ...
19
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 ...
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: ...
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 ...
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> {% ...
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" ...
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> ...
4
votes
1answer
2k views

How to use Backbone.Marionette.ItemView with Mustache

The following code works fine using Backbone.Marionette.ItemView but not Mustache. Backbone.Marionette.ItemView - no Mustache I would like to use the same code but loading the template varaible ...
4
votes
1answer
1k views

Mustache and Haml

I have got this haml/mustache template: {{#data}} ok {{#items}} {{#item}} %b ID: {{id}} {{/item}} {{/items}} {{/data}} And I have got Illegal nesting: nesting within plain text ...
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 ...
5
votes
3answers
2k views

How to make client side I18n with mustache.js

i have some static html files and want to change the static text inside with client side modification through mustache.js. it seems that this was possible Twitter's mustache extension on github: ...
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, ...
6
votes
3answers
425 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 ...
4
votes
1answer
2k views

Rails Client side / Server side rendering using single template (handlebars or Mustache) with Sammy.js

I've searched the web for a while looking for a tutorial, but haven't had much luck. From what I understand, Twitter is using a single Mustache.js template in rails to render from the server on first ...
3
votes
2answers
399 views

How to integrate pystache with pyramid?

I would like to use the class based views that pystache offers in my pyramid application, but I'm not entirely sure how to integrate the two properly. I've read this already, but it doesn't talk about ...
3
votes
2answers
3k views

How to handle an IF STATEMENT in a Mustache template?

I'm using mustache. I'm generating a list of notifications. A notification JSON object looks like: [{"id":1364,"read":true,"author_id":30,"author_name":"Mr ...
0
votes
2answers
2k views

backbone toJSON with helper methods

I have a backbone model with attributes and some helper methods that output something other than the actual attribute (for formatting for example). However, when I call toJSON, only the attributes ...
5
votes
1answer
1k views

Difference between compile(), parse(), and render() in mustache.js

What is the difference between: Mustache.compile() , Mustache.parse(), and Mustache.render() in the new mustache.js version 0.5.0, and perhaps for bonus points you could tell us what the ...
5
votes
2answers
2k views

How To Start Using Kostache?

I just asked a question ( Templates In Kohana 3.1 ) about templates and now I know that I should use Kostache. It's a module for the Mustache template language. Anyway, I just enabled Kostache module ...
2
votes
2answers
159 views

Using a variable to store a knockout template

New to knockout and loving it so far cut a 700 line jQuery mess into 150 lines. The one part I am not really liking is the templating. I want to be able to create a file similar to this ...
2
votes
1answer
674 views

Mustache.js loop through JSON data

Can anyone advise how should my template loop like to loop through JSON data in following example? DEMO here: http://jsfiddle.net/Seefeld/LbVEH/ { "0": { "Dosage": "25", "Drug": ...
2
votes
2answers
187 views

Mustache: Retrieve list/hash of tags from a template?

All the documentation and examples of Mustache I've seen show how to use a hash to populate a template. I'm interested in going the other direction. EG, if I have this: Hello {{name}} Can mustache ...
2
votes
3answers
667 views

How to change the template engine in Pyramid?

In particular I want to use pystache but any guide for another template engine should be good enough to set it up. If I understood correctly, I have to register the renderer factory in the ...
1
vote
1answer
2k views

loading handlebars.js template from external html file shows nothing

I am going to try to explain this in order, but this is a bit of a stretch on my js skills, so I could explain it like an idiot. here is my javascript to get the json from the server, and try to push ...
1
vote
1answer
404 views

How to execute Mustache template with JSON/String on Android?

I have String object with template base, something like: <h1>{{header}}</h1> {{#bug}} {{/bug}} {{#items}} {{#first}} <li><strong>{{name}}</strong></li> ...
1
vote
2answers
1k views

Mustache (or Handlebars) iterating over two lists

I have two arrays: var content = { "girls": ["Maria", "Angela", "Bianca"], "digits": ["21.143.191.2", "123.456.78.90", "971.6.17.18.1"] }; and a template: <script id="template" ...
1
vote
2answers
167 views

javascript / jquery - creating an object in a particular format from a loop

I'm trying to get some data into this format, for use with a templating system called mustache: { "repo": [ { "name": "resque" }, { "name": "hub" }, { "name": "rip" }, ] } and what ...
1
vote
1answer
2k views

how can I render this JSON use mustache.js without loop

here is the JSON: var data = [ { "event": { "name": "txt1", "data": "2011-01-02", "address": "Guangzhou ...
0
votes
1answer
529 views

How to render json with arbitrary keys using mustache?

I have a JSON object that looks like the following: { "XXX":{"name":"First"}, "YYY":{"name":"Second"}, .... } I need to render it to look like: <div> <h1>XXX</h1> ...
0
votes
1answer
476 views

Mustache section in Couchdb issues

I am a couchdb newbie running CouchDB 1.0.1. I have a very basic issue. I cannot get Mustache Sections to render in a list. Here is my list with the data hard coded from an example. function(head, ...
4
votes
2answers
2k views

Mustache render on the server (rails) and on the client (javascript)

Is there any documentation on Mustache best practices when using on the server (with rails) and on the client (with javascript)? # hello_world.mustache Hello {{planet}} # some other file <% ...
4
votes
1answer
893 views

Access a mustache template that was loaded in the html head tag?

Is there a way to access the contents of a mustache template file that is loaded via the HTML <head> via javascript? <link rel="template" href="templates/address.mustache" type="text/html" ...
3
votes
2answers
137 views

Why should we wrap our templates inside script blocks?

Background All the JS template engines recommend putting your template text inside script blocks like so: <script id="peopleTemplate" type="text/template"> {#people} <div ...

1 2