30 lines
585 B
PHP
30 lines
585 B
PHP
|
<?php
|
||
|
/*
|
||
|
* * Template Name: about-people
|
||
|
* * */
|
||
|
?>
|
||
|
|
||
|
<?php get_header(); ?>
|
||
|
|
||
|
<div id="contentwrapper">
|
||
|
<div id="contentcontainer">
|
||
|
<h2>Contact</h2>
|
||
|
<div id="sidenav">
|
||
|
<a href="/about">About the FNF</a>
|
||
|
<a href="/people" class="on">People</a>
|
||
|
</div ##end of sidenav>
|
||
|
<div id="col">
|
||
|
|
||
|
<?php if (have_posts()) : while (have_posts()) : the_post();?>
|
||
|
|
||
|
|
||
|
<?php the_content(); ?>
|
||
|
|
||
|
|
||
|
<?php endwhile; else: ?>
|
||
|
<p>Sorry, no posts matched your criteria.</p>
|
||
|
<?php endif; ?>
|
||
|
</div ##end of col>
|
||
|
</div ## end of colwrapper>
|
||
|
<?php get_footer(); ?>
|