summaryrefslogtreecommitdiffstats
path: root/wp-content/themes/home/home.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-content/themes/home/home.php')
-rw-r--r--wp-content/themes/home/home.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/wp-content/themes/home/home.php b/wp-content/themes/home/home.php
new file mode 100644
index 0000000..358f4a1
--- /dev/null
+++ b/wp-content/themes/home/home.php
@@ -0,0 +1,20 @@
+<?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(); ?>