This page last changed on Jan 20, 2012 by jed.wheeler@involver.com.

Overview

unless

Unless is the opposite of "if" and is useful if you only need to check that something isn't true.


Example (using "unless" for fan gate)

<style>
.fangate {display:none; }
#main {display:block;}


{% unless is_page_fan %}
	.fangate {display:block; }
	#main {display:none;}
{% endunless %}

</style>


<div class="fangate">{% editable_image name:"fangate" %}</div>


<div id="main">
	This div wraps around your page
</div>

Document generated by Confluence on Feb 12, 2013 09:09