Questions tagged [client-side-templating]
101 questions
2
votes
2 answers
Render views without any controller in Play
I am building an application using Play for Model and Controller, but using backbone.js, and client side templating. Now, I want the html templates to be served by Play without any backing controller. I know I could put my templates in the public…

Shreyas
- 1,462
- 9
- 11
2
votes
2 answers
Client side templating and search engine referencing
I keep hearing about javascript templating engines like knockoutjs or backbone recently. They all seem pretty cool but I was wondering if using such systems prevents good indexing of web pages.
Are the search engines' crawlers able to parse the…

Benjamin Brizzi
- 122
- 11
2
votes
1 answer
Using .data() method in jQote – client-side templating plugin
For the past few weeks, i have been using jQote – client-side templating plugin to generate html fragments in runtime.
For months i have been using the dom attributes like, id, class, alt to store critical data.
Now, I came to know about .data()…
user405398
2
votes
1 answer
Client side template engine with XML support
Is there any client side template engine with XML/ XPath support? I looked into handlebars, mustache, underscore etc. but looks like they only can accept a JSON object as it's context.
What I'm really looking for is to have xpath in…

Fahim Farook
- 1,482
- 2
- 14
- 38
2
votes
1 answer
Loop in Nunjucks behaving differently depending on inner HTML markup
I have the following Nunjucks template supposed to render a list of items as
list:
{% for item in items %}
{{item.title}}
{% endfor %}
and as table
{% for item in items %}