Files
smarty/demo/templates/index.tpl

13 lines
276 B
Smarty
Raw Normal View History

2000-11-15 17:11:52 +00:00
{* A simple variable test *}
hello, my name is {$Name}.<br>
2000-11-20 03:20:55 +00:00
My interests are:
{section name=outer loop=$FirstName}
{if %outer.index% is even by 2}
. {$outer/FirstName} {$outer/LastName}
{else}
* {$outer/FirstName} {$outer/LastName}
{/if}
{sectionelse}
none
{/section}