diff options
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 |
