summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-content/themes/home/home.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-inst/wp-content/themes/home/home.php')
-rw-r--r--wp-inst/wp-content/themes/home/home.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/wp-inst/wp-content/themes/home/home.php b/wp-inst/wp-content/themes/home/home.php
deleted file mode 100644
index 358f4a1..0000000
--- a/wp-inst/wp-content/themes/home/home.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php get_header(); ?>
-
- <div id="content" class="widecolumn">
-
- <h2>WordPress &micro;</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-signup.php">Create a new blog</a></li><li> Edit this file at <code>wp-content/themes/home/home.php</code> with your favourite text editor and customize this screen.</li></ul></p>
-<h3>News Blog</h3>
-
-<ul>
-<?php
-query_posts('showposts=7');
-if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
-<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title();?> </a></li>
-<?php endwhile; ?><?php endif; ?>
-</ul>
-
-</div>
-
-<?php get_footer(); ?>