summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-content/themes/home/home.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-08-31 17:12:51 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-08-31 17:12:51 +0000
commitb97ffeeb3d4ac57c41e3884c949eca65e427da39 (patch)
tree033ae7853239a0dd0b9a725fef2dd33f5921b70f /wp-inst/wp-content/themes/home/home.php
parentf0b71c9b71ed231ce98e1b6863e724f330afdaee (diff)
downloadwordpress-mu-b97ffeeb3d4ac57c41e3884c949eca65e427da39.tar.gz
wordpress-mu-b97ffeeb3d4ac57c41e3884c949eca65e427da39.tar.xz
wordpress-mu-b97ffeeb3d4ac57c41e3884c949eca65e427da39.zip
Major overhaul of rewrite rules, "main" blog now displays a "home" page.
Hopefully non-vhost install is working again. git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@266 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-content/themes/home/home.php')
-rw-r--r--wp-inst/wp-content/themes/home/home.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/wp-inst/wp-content/themes/home/home.php b/wp-inst/wp-content/themes/home/home.php
new file mode 100644
index 0000000..e2e4c49
--- /dev/null
+++ b/wp-inst/wp-content/themes/home/home.php
@@ -0,0 +1,15 @@
+<?php get_header(); ?>
+
+ <div id="content" class="widecolumn">
+
+ <h2><?php echo $current_site->site_name ?></h2>
+ <p>This is a <a href="http://mu.wordpress.org/">WordPress Mu</a> powered site.</p>
+ <p>You can: <ul><li> <a href="wp-login.php">Login</a> </li><li> <a href="wp-newblog.php">Create a new blog</a></li><li> Edit thie file at <code>wp-content/themes/home/home.php</code> with your favourite text editor and customize this screen.</li></ul></p>
+ <?php if( constant( "VHOST" ) == 'no' ) :?>
+ <h3>Virtual Hosts</h3>
+ <p>As you are not using virtual hosts, it is not possible to post anything to this primary blog because the URLs of your posts could potentially conflict with weblogs living at this site. Please consider using virtual hosts as <a href="http://mu.wordpress.org/forums/topic/99">described here</a> instead so that your website will have http://blogname.<?php echo $_SERVER[ 'HTTP_HOST' ] ?>/ format addresses instead of http://<?php echo $_SERVER[ 'HTTP_HOST' ] ?>/blogname/ format.</p>
+ <?php endif; ?>
+
+ </div>
+
+<?php get_footer(); ?>