summaryrefslogtreecommitdiff
path: root/faq.php
diff options
context:
space:
mode:
Diffstat (limited to 'faq.php')
-rw-r--r--faq.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/faq.php b/faq.php
new file mode 100644
index 0000000..5bce2e0
--- /dev/null
+++ b/faq.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("faq.tpl");
+
+?>