blob: 813abae115c9a7d30d5bdac9170d50ff821d63a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{extends file="layout.tpl"}
{block name=title}Home Page{/block}
{block name=navigation}
<dl>
<dt><a href="contact.php">Contact us</a></dt>
<dt><a href="categories.php">Categories</a></dt>
{if $loggedin}
<dt><a href="login.php?logout">Logout</a></dt>
{else}
<dt><a href="login.php">Login</a></dt>
{/if}
</dl>
{/block}
{block name=content}
<p>This site will rock your chair. The best products from all over the world.
Furniture the like you have never seen. Contact us and get our catalog or login to order directly from our categories.</p>
{/block}
|