blob: b4ec67d9d389fbd685eb5932ea7b23ab5365b40c (
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("about.tpl");
?>
|