2006-11-19 02:56:05 -05:00
|
|
|
<?php
|
2008-05-25 11:50:15 -04:00
|
|
|
/**
|
|
|
|
* Front to the WordPress application. Most of WordPress is loaded through this
|
|
|
|
* file. This file doesn't do anything, but loads the file which does and tells
|
|
|
|
* WordPress to load the theme.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tells WordPress to load the WordPress theme and output it.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
2005-02-13 15:38:28 -05:00
|
|
|
define('WP_USE_THEMES', true);
|
2008-05-25 11:50:15 -04:00
|
|
|
|
|
|
|
/** Loads the WordPress Environment and Template */
|
2004-04-15 22:24:37 -04:00
|
|
|
require('./wp-blog-header.php');
|
2005-01-01 21:47:45 -05:00
|
|
|
?>
|