Files
smarty/demo/templates/index.tpl

84 lines
2.1 KiB
Smarty
Raw Normal View History

2003-02-03 15:39:47 +00:00
{config_load file=test.conf section="setup"}
{include file="header.tpl" title=foo}
2000-11-20 20:06:06 +00:00
2003-02-03 15:39:47 +00:00
<PRE>
{* bold and title are read from the config file *}
{if #bold#}<b>{/if}
{* capitalize the first letters of each word of the title *}
Title: {#title#|capitalize}
{if #bold#}</b>{/if}
The current date and time is {$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"}
Tooltip example: Move your mouse over the <A HREF="" {popup sticky=true caption="Smarty pop-up text" delay=400 text="This is an example of a tooltip. Tooltips are handy for context sensitive information, and extremely easy to add to your templates with Smarty and the integration of <a href='http://www.bosrup.com/web/overlib/'>overLIB</a> by Erik Bosrup"} onclick="return false;">Help</A> link to see an example of a tooltip using Smarty's popup function.
The value of global assigned variable $SCRIPT_NAME is {$SCRIPT_NAME}
Example of accessing server environment variable SERVER_NAME: {$smarty.server.SERVER_NAME}
The value of {ldelim}$Name{rdelim} is <b>{$Name}</b>
variable modifier example of {ldelim}$Name|upper{rdelim}
<b>{$Name|upper}</b>
An example of a section loop:
{section name=outer loop=$FirstName}
{if %outer.index% is odd by 2}
{%outer.rownum%} . {$FirstName[outer]} {$LastName[outer]}
{else}
{%outer.rownum%} * {$FirstName[outer]} {$LastName[outer]}
{/if}
{sectionelse}
none
2000-11-20 03:20:55 +00:00
{/section}
2000-11-21 20:29:55 +00:00
2003-02-03 15:39:47 +00:00
An example of section looped key values:
{section name=sec1 loop=$contacts}
phone: {$contacts[sec1].phone}<br>
fax: {$contacts[sec1].fax}<br>
cell: {$contacts[sec1].cell}<br>
2001-01-26 15:15:55 +00:00
{/section}
2003-02-03 15:39:47 +00:00
<p>
2001-01-04 21:39:51 +00:00
2003-02-03 15:39:47 +00:00
testing strip tags
{strip}
<table border=0>
<tr>
<td>
<A HREF="{$SCRIPT_NAME}">
<font color="red">This is a test </font>
</A>
</td>
</tr>
</table>
{/strip}
2001-01-18 20:41:43 +00:00
2003-02-03 15:39:47 +00:00
</PRE>
2001-02-12 16:01:55 +00:00
2003-02-03 15:39:47 +00:00
This is an example of the html_select_date function:
2003-02-03 15:39:47 +00:00
<form>
{html_select_date start_year=1998 end_year=2010}
</form>
2003-02-03 15:39:47 +00:00
This is an example of the html_select_time function:
2001-03-28 15:30:56 +00:00
2003-02-03 15:39:47 +00:00
<form>
{html_select_time use_24_hours=false}
</form>
2001-03-28 15:30:56 +00:00
2003-02-03 15:39:47 +00:00
This is an example of the html_options function:
2003-02-03 15:39:47 +00:00
<form>
<select name=states>
{html_options values=$option_values selected=$option_selected output=$option_output}
</select>
</form>
2003-02-03 15:39:47 +00:00
{include file="footer.tpl"}