<?php/** * * Template: home.php * --> A Dynamic Home Page Template * * This template calls the header, navigation, sidebar, and footer. * It than creates four boxes. * First box displays the most recent ?Decoded News post / Welcom msg? * Second box displays the most recent Craigslist News post * Third displays ?random / most recent? ?Forum post / Decoded News post? * Fourth displays random Tip of the Day from the HTML How To section * */?><?php get_header(); ?><?php get_navigation(); ?><?php get_sidebar(); ?><div id="container"><div id="content"><div class="home" id="hello"><h2><a href="#about">Welcome</a></h2></div><div class="home" id="news"><h2><a href="#news">Craigslist.org News</a></h2></div><div class="home" id="blog"><?php $rand_posts = get_posts('numberposts=1&orderby=rand&category_name=decoded-news'); foreach( $rand_posts as $post ) : ?> <h2><a href="#blog">Decoded News</a></h2> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><?php the_author_posts_link(); ?></a></h3> <?php endforeach; ?><p><?php the_excerpt() ?></p></div><div class="home" id="tip"><?php $rand_posts = get_posts('numberposts=1&orderby=rand&category_name=html'); foreach( $rand_posts as $post ) : ?> <h2><a href="#HTML">Tip of the Day</a></h2> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><?php the_author_posts_link(); ?></a></h3> <?php endforeach; ?><p><?php the_excerpt() ?></p></div></div><!-- #content --><?php get_footer(); ?>