blob: 8cb2540621bface8dc5d84b9386c337bf8cffdb5 (
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("resources.tpl");
?>
|