Skip to content

Template Conditional

Mostafa Barmshory edited this page Nov 27, 2016 · 2 revisions

شرط

if

{if $condition}

{/if}

if else

{if $condition}
...
{else}
..
{/if}

elseif

{if $condition}
...
{elseif $condition}
...
{elseif $condition}
...
{else}
..
{/if}

While

     {while $condition}
         ....
     {/while}
Clone this wiki locally