31 lines
635 B
PHP
31 lines
635 B
PHP
|
<?php
|
||
|
/*
|
||
|
* * Template Name: contact-newsletter
|
||
|
* * */
|
||
|
?>
|
||
|
|
||
|
<?php include('splash_header.php'); ?>
|
||
|
|
||
|
<div id="contentwrapper">
|
||
|
<div id="contentcontainer">
|
||
|
<h2>Contact</h2>
|
||
|
<div id="sidenav">
|
||
|
<a href="/contact">Web Form</a>
|
||
|
<a href="/contact-email">E-mail</a>
|
||
|
<a href="/contact-irc">IRC</a>
|
||
|
</div ##end of sidenav>
|
||
|
<div id="col">
|
||
|
|
||
|
<?php if (have_posts()) : while (have_posts()) : the_post();?>
|
||
|
|
||
|
<h2 id="post-<?php the_ID(); ?>"><?php the_title();?></h2>
|
||
|
|
||
|
<?php the_content(); ?>
|
||
|
|
||
|
|
||
|
<?php endwhile; endif; ?>
|
||
|
|
||
|
</div ##end of col>
|
||
|
</div ## end of colwrapper>
|
||
|
<?php get_footer(); ?>
|