server/onyx/tpl/bootstrap/public/home.tpl

12 lines
204 B
Smarty
Raw Normal View History

2013-10-09 15:51:12 +00:00
{extends file="layout.tpl"}
{block name=content}
<h1>
Hello World!
</h1>
2013-10-26 06:59:59 +00:00
{foreach from=$teams item=i}
<ul>
2013-10-26 22:57:28 +00:00
<li><a href="/{$i->id}-{$i->team_name}">{$i->team_name}</a></li>
2013-10-26 06:59:59 +00:00
</ul>
{/foreach}
2013-10-09 15:51:12 +00:00
{/block}