summaryrefslogtreecommitdiffstats
path: root/templates/contact.tpl
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-06-01 18:46:12 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-06-01 18:46:12 +0200
commitaf6dd5f8f9844596e85db25a8e97df9e08cb795c (patch)
tree8408e754dd335571635bcde041bbce69213af592 /templates/contact.tpl
parentbe50d9ed4ba2b844bbc29686cee46b1dc149372a (diff)
downloadCatalog-af6dd5f8f9844596e85db25a8e97df9e08cb795c.tar.gz
Catalog-af6dd5f8f9844596e85db25a8e97df9e08cb795c.zip
Port alls sites to smarty and use the inheritance model
Diffstat (limited to 'templates/contact.tpl')
-rw-r--r--templates/contact.tpl16
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