Actions

Template engine

From LimeSurvey Manual

Revision as of 20:38, 11 September 2016 by Olle (talk | contribs) (Created page with "Since Louis factored out all HTML from qanda and added a configuration file to the templates, it's a small task to add a template engine, replace the PHP views with e.g. Twig...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Since Louis factored out all HTML from qanda and added a configuration file to the templates, it's a small task to add a template engine, replace the PHP views with e.g. Twig templates.

Comparison between Twig and Mustache:

Function Twig Mustache
Echo variable {{var}} {{var}}
Loop variable {% for user in users %} ... {% endfor %} {{#users}} ... {{/users}}