-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage.php
More file actions
18 lines (18 loc) · 780 Bytes
/
Copy pathpage.php
File metadata and controls
18 lines (18 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php get_header(); ?>
<div id="primary">
<?php if ( have_posts() ):while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post-header">
<h2 class="post-title"><a href="<?php the_permalink(); ?>"
title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
</div>
<div class="post-body clearfix">
<div class="post-content"><?php the_content( '' ); ?></div>
</div>
</div>
<?php endwhile; endif; ?>
<?php comments_template(); ?>
</div>
<!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>