Tagged Questions

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 ...

learn more… | top users | synonyms

9
votes
1answer
2k 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 ...
9
votes
6answers
2k 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 ...
8
votes
1answer
378 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 ...
8
votes
1answer
755 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 ...
7
votes
2answers
291 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 ...
7
votes
3answers
466 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> {% ...
7
votes
4answers
3k 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 ...
7
votes
3answers
1k 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}}"/> ...
7
votes
3answers
2k 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 ...
6
votes
2answers
330 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?
6
votes
3answers
917 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: ...
6
votes
2answers
2k views

what is the minimal example to have mustache.js + jQuery working?

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 ...
6
votes
1answer
620 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 ...
6
votes
1answer
2k 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 ...
6
votes
1answer
3k views

Mustache partials and code reuse

I'm getting the hand out 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 ...
5
votes
1answer
65 views

Nustache View Engine ArrayTypeMismatchException

Trying to use Nustache to share client and server mustache templates, but Nustache is just not playing nicely with my app. I used the code straight out of their MVC application example in the source ...
5
votes
3answers
353 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 ...
5
votes
2answers
274 views

Does a handlebars.js implementation in java exist?

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 ...
5
votes
2answers
1k 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> ...
5
votes
2answers
430 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 ...
5
votes
4answers
1k 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 ...
5
votes
3answers
323 views

Which interoperable templating framework for JavaScript and Grails/Java?

I am currently researching templating frameworks that have implementations for both JavaScript and Grails/Java for an upcoming project that will render templates both within a Grails application and ...
4
votes
1answer
156 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 ...
4
votes
1answer
229 views

How to deal with hashes in keys, mustache.js?

I'm attempting to use mustache.js as a templating system for JSON data that I'm getting back from an external API. The trouble is that the JSON object has keys that begin with hashes and I'm not sure ...
4
votes
2answers
1k views

using JSON in Rails, Backbone and Mustache - formats seem to differ

I am trying to put together a Rails app, with backbone.js and mustache templating. I am finding that the JSON required by backbone isn't compatible with the JSON required by Mustache. (I started out ...
4
votes
2answers
579 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 ...
4
votes
2answers
245 views

Single HTML site using only client side templates and Rest calls

I am working on a highly dynamic site which has around 10 different pages (login, registration, my services, my profile, etc.). I am thinking of using a javascript template framework (e.g., ...
4
votes
4answers
3k 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 ...
4
votes
1answer
1k 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 ...
4
votes
2answers
528 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.
3
votes
2answers
194 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 ...
3
votes
2answers
189 views

mustache i18n with parameters

I'm trying to use Mustache together with i18n (php, within Wordpress). I've got the basic __ functionality working nicely, something like this class my_i18n { public function __trans($string) { ...
3
votes
3answers
594 views

Should I be using Backbone and client-side templates, like Mustache?

I've been getting a similar feeling lately. I felt this way several years ago when I had been using Apache, Django and MySQL exclusively. I felt like the web stack that I was using had began to show ...
3
votes
2answers
162 views

Mustache JS and singular/plural

I use mustache for templating my javascript ajax calls, Here is my data and the template: {'joined':1} // ajax responde data json. var myTemplate = '{{ joined }} person joined so far.' It works, ...
3
votes
4answers
758 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 stocked in my main template app file , like this : <script id="avatar_tpl" ...
3
votes
5answers
1k views

nodejs mustache/handlebars example project

I've been looking to use mustache or handlebars and nodejs but I have't been successful to finding a sample project online that is working. I just need a sample skeleton structure which uses ...
3
votes
1answer
661 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 ...
3
votes
2answers
384 views

Sammy.js + Mustache gives error in simple example: haystack.indexOf is not a function

Hi all and thanks in advance for taking the time. I'm experimenting with Sammy.js + Mustache . So, I have created an HTML file that includes everything that should be there: <html> ...
3
votes
4answers
845 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 ...
3
votes
2answers
498 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 <% ...
3
votes
2answers
391 views

Mustache (PHP) Outputting associative array keys

In Mustache can I print out the name of an associative array key instead of its value? i.e. So instead of this: $cars= array( 'name'=>'ferrari', 'color'=>'red', 'name'=>'lambo', ...
3
votes
1answer
369 views

Javascript template engine which would come with a precompilation script?

I am searching for the javascript template engine which ships with the precompilation script + watcher. How would I see it: You write the files as the typical html layouts and store in let's say the ...
3
votes
2answers
715 views

How to use Mustache.js if the object is in a array?

i use Mustache.js succusefully display the html ,here's the code var mygame = { player:'viking', ...
3
votes
0answers
376 views

Rails Yield With Parameter in Mustache

I'm using Mustache in Rails 3 with this gem and I'm hitting a roadblock when trying to use Mustache in an instance where I would normally use yield :parameter. <html> <head> ...
3
votes
1answer
491 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
1answer
3k views

How to use Mustache.js if the JSON object is in a nested array?

I have heard wonderful things about Mustache and decided to give it a try. I am trying to figure out how to use Mustache template with jQuery. I have been searching for a few days now. Mustache can ...
3
votes
0answers
575 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: ...
3
votes
2answers
669 views

There is 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 ...
3
votes
3answers
2k 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.
2
votes
3answers
149 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 ...

1 2 3 4 5