From 97bf1f576ef2fc9ea33c77b7d135edeb1a586d0a Mon Sep 17 00:00:00 2001 From: pixeldesu Date: Sun, 17 Aug 2014 23:28:05 +0200 Subject: [PATCH] added base structure for layout and footer templates --- views/footer.html | 4 ++++ views/index.html | 3 +++ views/index.html~ | 0 views/layout.html | 18 ++++++++++++++++++ 4 files changed, 25 insertions(+) create mode 100644 views/footer.html create mode 100644 views/index.html~ diff --git a/views/footer.html b/views/footer.html new file mode 100644 index 0000000..1d26338 --- /dev/null +++ b/views/footer.html @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/views/index.html b/views/index.html index e69de29..8cbba87 100644 --- a/views/index.html +++ b/views/index.html @@ -0,0 +1,3 @@ +{include="layout"} +

Hello World!

+{include="footer"} \ No newline at end of file diff --git a/views/index.html~ b/views/index.html~ new file mode 100644 index 0000000..e69de29 diff --git a/views/layout.html b/views/layout.html index e69de29..0c01963 100644 --- a/views/layout.html +++ b/views/layout.html @@ -0,0 +1,18 @@ + + + + + + + {$site_title} + + + + + + + + \ No newline at end of file