blob: db3b0ac78613e29cff719c0039852956a9d3b9ce (
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 a get our catalog or login to order direct from our categories.</p>
{/block}
|