<?php
//Author: Kevin Jones
//Email: kevin@weblery.com
//Web Address: http://www.weblery.com/
//Date Last Modified: 06/17/2009
//Copyright: Kevin Jones 2009
//License: ./documentation/License.txt
//
//Note: This file is not necessary for weblery to run
//and can be removed at any time.
//
//Configuration Parameters are set in configuration.php
//Please read over the documents in the documentation folder

//If your php version is less than 5, redirect to demophp4.php
if (PHP_VERSION < 5) { header("Location:demophp4.php"); }
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<title>Weblery Demonstration Page</title>
	</head>
	
	<body>

		<?php /*
		#################################################################################
		The Line Below is the only line you need to include in your PHP enabled website.
		Please copy it and paste into a place where you want weblery to show up
		in a .php file on your site.
		
		Depending on where you unpacked the weblery package, you may need to modify the
		path to the weblery.php file.
		#################################################################################
		*/ ?>
		<?php require_once('weblery.php'); ?>

	</body>
</html>
