Mustache Template Showcase

This page is a showcase for all the mustache features usable from DMVCFramework Server Side Views using the default Mustache engine.

List of objects

{{^people}}
No People Found
{{/people}} {{#people}}
{{-index}}. {{first_name}} {{last_name}}
{{/people}}

Handle empty list of objects

{{^people2}}
No People Found
{{/people2}} {{#people2}}
{{-index}}. {{first_name}} {{last_name}}
{{/people2}}

Avoid HTML automatic escaping using {{=<% %>=}} {{{ content }}

<%={{ }}=%>
{{#myobj}} {{{rawhtml}} {{/myobj}}
Check source code to know how to escape curly braces

Handling partials