summaryrefslogtreecommitdiff
path: root/about.php
diff options
context:
space:
mode:
authorNathan Kinkade <nath@nkinka.de>2008-02-03 23:23:24 +0000
committerNathan Kinkade <nath@nkinka.de>2008-02-03 23:23:24 +0000
commitd895b852a6e160496ffc760d46d3719a3d62ff86 (patch)
tree52230bb04148197e8312e09b5c5273417e7a3be9 /about.php
Initial checkin of nutridb.org and basic subversion directory structure
Diffstat (limited to 'about.php')
-rw-r--r--about.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/about.php b/about.php
new file mode 100644
index 0000000..b4ec67d
--- /dev/null
+++ b/about.php
@@ -0,0 +1,16 @@
+<?php
+
+# include the main site config where various global variables
+# and libraries are included
+include("config.php");
+
+# grab the various parts
+include("header.php");
+include("sidebar_left.php");
+include("sidebar_right.php");
+include("footer.php");
+
+# display the page
+$smarty->display("about.tpl");
+
+?>