Added charity, ents and food pages. Added splashes for charity and ents from Ben...
authorRichard Whitehouse <github@richardwhiuk.com>
Sun, 30 Jan 2011 02:28:23 +0000 (02:28 +0000)
committerRichard Whitehouse <github@richardwhiuk.com>
Sun, 30 Jan 2011 02:28:23 +0000 (02:28 +0000)
page/charity.php [new file with mode: 0644]
page/ents.php [new file with mode: 0644]
page/food.php [new file with mode: 0644]
template/charity.php [new file with mode: 0644]
template/ents.php [new file with mode: 0644]
template/food.php [new file with mode: 0644]
theme/charity.png [new file with mode: 0644]
theme/ents.png [new file with mode: 0644]

diff --git a/page/charity.php b/page/charity.php
new file mode 100644 (file)
index 0000000..b01dc79
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+
+class Page_Charity extends Page {
+
+ public function execute($template){
+
+ }
+
+
+}
diff --git a/page/ents.php b/page/ents.php
new file mode 100644 (file)
index 0000000..9c1eca8
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+
+class Page_Ents extends Page {
+
+ public function execute($template){
+
+ }
+
+
+}
diff --git a/page/food.php b/page/food.php
new file mode 100644 (file)
index 0000000..57d5dba
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+
+class Page_Food extends Page {
+
+ public function execute($template){
+
+ }
+
+
+}
diff --git a/template/charity.php b/template/charity.php
new file mode 100644 (file)
index 0000000..5917540
--- /dev/null
@@ -0,0 +1,9 @@
+<?php
+
+class Template_Charity extends Template {
+
+public function display(){
+       ?><img src="/theme/charity.png"><?
+}
+
+}
diff --git a/template/ents.php b/template/ents.php
new file mode 100644 (file)
index 0000000..598a1fc
--- /dev/null
@@ -0,0 +1,9 @@
+<?php
+
+class Template_Ents extends Template {
+
+public function display(){
+       ?><img src="/theme/ents.png"><?
+}
+
+}
diff --git a/template/food.php b/template/food.php
new file mode 100644 (file)
index 0000000..53cbdc9
--- /dev/null
@@ -0,0 +1,7 @@
+<?php
+
+class Template_Food extends Template {
+
+
+
+}
diff --git a/theme/charity.png b/theme/charity.png
new file mode 100644 (file)
index 0000000..4b8b303
Binary files /dev/null and b/theme/charity.png differ
diff --git a/theme/ents.png b/theme/ents.png
new file mode 100644 (file)
index 0000000..2a57ee1
Binary files /dev/null and b/theme/ents.png differ