blob: 6909081a2501df23e6889819b95c987d8dc637d5 (
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("guide.tpl");
?>
|