test_templ_mode
Previous  Top  Next

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