staticbits.thefnf.org/fnf2014/about-fnf.php

30 lines
582 B
PHP
Raw Normal View History

2022-09-27 05:51:15 +00:00
<?php
/*
* * Template Name: about-fnf
* * */
?>
<?php get_header(); ?>
<div id="contentwrapper">
<div id="contentcontainer">
<h2>Contact</h2>
<div id="sidenav">
<a href="/about" class="on">About the FNF</a>
<a href="/people">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(); ?>