diff options
Diffstat (limited to 'templates/contact.tpl')
| -rw-r--r-- | templates/contact.tpl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/contact.tpl b/templates/contact.tpl new file mode 100644 index 0000000..b8bf0d3 --- /dev/null +++ b/templates/contact.tpl @@ -0,0 +1,16 @@ +{extends file="layout.tpl"} +{block name=title}Contact us{/block} +{block name=navigation} +<dl> + <dt><a href=".">Home</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>Name: SomeCompany Ltd.<br>Telephone: +1-555-6383<br>Address: SomeStreet in Alamo</p> +{/block}
\ No newline at end of file |
