big consolidation

This commit is contained in:
2022-09-27 00:51:15 -05:00
parent 4d61ad26bd
commit 50f2f1c644
509 changed files with 36567 additions and 7542 deletions

35
fnf2014/weblog.php Normal file
View File

@@ -0,0 +1,35 @@
<?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(); ?>