summaryrefslogtreecommitdiff
path: root/faq.php
blob: 5bce2e0d8c2a6ac107c59683c2df4ba1e1cc52d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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");

?>