26 lines
848 B
PHP
Executable File
26 lines
848 B
PHP
Executable File
<?php
|
|
#####################################################
|
|
# #
|
|
# written by benjamin ramey #
|
|
# ben.ramey@gmail.com #
|
|
# #
|
|
# best viewed with: #
|
|
# resolution = 1280x960 #
|
|
# tab = 4 spaces #
|
|
# indent = 8 spaces #
|
|
# #
|
|
# This file contains: #
|
|
# about page for bobsleighphotos.com #
|
|
# #
|
|
#####################################################################################################################
|
|
# CODE # COMMENTS #
|
|
#####################################################################################################################
|
|
include 'html/html_header.php';
|
|
|
|
$page = xml_parse_file($_DOC_ROOT.'/data/pages/home.xml');
|
|
|
|
html_print_xml_page($page['page']);
|
|
|
|
include 'html/html_footer.php';
|
|
|
|
?>
|