|
test_templ_mode |
|
test_templ_mode is a boolean variable that is true if the blog is currently being viewed using test templates.
Example
The following code causes Currently viewing blog using test templates if the blog is being viewed using the test templates, or Currently viewing blog using live templates otherwise:
{{if test_templ_mode}}
Currently viewing blog using test templates.
{{else}}
Currently viewing blog using live templates.
{{/if}}