-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-civilwar-sub.php
41 lines (32 loc) · 1.04 KB
/
page-civilwar-sub.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* Template name: Civil War Subpage
*
*/
get_header(); ?>
<div id="wrapper" class="sidebar-right-wrapper">
<div id="wrapper_inner">
<div id="wrapper">
<div id="civilwar-intro"><a href="http://seekingmichigan.org/civil-war/"></a>
<div id="intro" class="text-intro">
</div>
</div>
<div id="page-content" class="two_third">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php if($e404_options['page_titles']) : ?><h2 class="fancy-header"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2><?php endif; ?>
<div id="post-<?php the_ID(); ?>" class="page-layout">
<?php the_content(); ?>
<?php if(!is_attachment() && $e404_options['page_comments']) {
comments_template('', true);
} ?>
</div>
<?php endwhile; ?>
<?php get_template_part('navigation'); ?>
</div>
<div id="sidebar" class="one_third last sidebar-right">
<?php get_sidebar('civil war'); ?>
</div>
<br class="clear" />
</div>
</div>
<?php get_footer(); ?>