36 lines
775 B
PHP
36 lines
775 B
PHP
<?php
|
|
/*
|
|
* * Template Name: weblog
|
|
* * */
|
|
?>
|
|
|
|
<?php include('splash_header.php'); ?>
|
|
|
|
<div id="contentwrapper">
|
|
<div id="contentcontainer">
|
|
<h2>Weblog</h2>
|
|
<div id="sidenav">
|
|
<a href="/category/blog" class="on">Corporate Weblog</a>
|
|
<a href="/category/imw">Isaac's Weblog</a>
|
|
</div ##end of sidenav>
|
|
<div id="col">
|
|
<div id="priamry">
|
|
<div id="content" role="main">
|
|
|
|
<?php
|
|
/* the_post will retrieve the content of the new page you
|
|
* * create to list the posts, e.g. as an intro to describe
|
|
* * which posts are shown.
|
|
* */
|
|
the_post();
|
|
|
|
?>
|
|
|
|
</div><!-- /#content -->
|
|
</div><!-- /#primary -->
|
|
</div ##end of col>
|
|
</div ## end colcontainer>
|
|
</div ## end of colwrapper>
|
|
|
|
<?php get_footer(); ?>
|