Case Smarty Switch

{* 
	There is no switch in Smarty 
	Use if-statement, plugin or php instead
*}

{if $case1_as_condition}
   Case 1
{elseif $case2_as_condition}
   Case 2, etc
{else}
   Default
{/if}
Gorgeous Gannet