-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage.php
48 lines (38 loc) · 1.45 KB
/
page.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
42
43
44
45
46
47
48
<?php
/**
* @package WordPress
* @subpackage Agrilife
*/
get_header();
?>
<div id="content">
<div id="sidecontent">
<?php if ( function_exists( "yoast_breadcrumb" ) ) yoast_breadcrumb('', ''); ?>
<div id="main_content">
<?php if (have_posts()) : $count = 0; ?>
<?php while (have_posts()) : the_post(); $count++; ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php if ( !is_front_page() ) : ?>
<h2><?php the_title(); ?></h2>
<?php endif; ?>
<div class="storycontent">
<?php the_content(); ?>
</div><!-- /.storycontent -->
</div><!-- /.post -->
<?php if ('open' == $post->comment_status) : ?>
<?php comments_template(); ?>
<?php endif; ?>
<?php endwhile; else: ?>
<div class="post">
<p><?php _e('Sorry, no posts matched your criteria.', 'woothemes') ?></p>
</div><!-- /.post -->
<?php endif; ?>
</div><!-- #main_content -->
</div><!-- #sidecontent -->
<?php get_sidebar(); ?>
<div class="clear"></div>
</div><!-- #content -->
</div><!-- #main-box -->
<div id="main-box-bottom"></div>
</div><!-- #main -->
<?php get_footer(); ?>