diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-06-01 18:46:12 +0200 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-06-01 18:46:12 +0200 |
| commit | af6dd5f8f9844596e85db25a8e97df9e08cb795c (patch) | |
| tree | 8408e754dd335571635bcde041bbce69213af592 /templates/layout.tpl | |
| parent | be50d9ed4ba2b844bbc29686cee46b1dc149372a (diff) | |
| download | Catalog-af6dd5f8f9844596e85db25a8e97df9e08cb795c.tar.gz Catalog-af6dd5f8f9844596e85db25a8e97df9e08cb795c.zip | |
Port alls sites to smarty and use the inheritance model
Diffstat (limited to 'templates/layout.tpl')
| -rw-r--r-- | templates/layout.tpl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/layout.tpl b/templates/layout.tpl new file mode 100644 index 0000000..bd623a1 --- /dev/null +++ b/templates/layout.tpl @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>{block name=title}Untitled Page{/block}</title> +<link rel="stylesheet" type="text/css" href="styles/style.css"> +</head> +<body> + <header><h1>{block name=title}Untitled Page{/block}</h1></header> + <nav> + {block name=navigation}Error loading{/block} + </nav> + <div id="content"> + {block name=content}Error loading{/block} + <div class="spacer"></div> + </div> + <footer>Copyright by SomeCompany Ltd. Powered by PropelORM and Smarty.</footer> +</body> +</html>
\ No newline at end of file |
