-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.php
29 lines (24 loc) · 1.11 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
<?php get_header(); ?>
<div id="main" class="pure-u-1 pure-u-md-3-4">
<div class="container">
<!-- A wrapper for all blog posts -->
<div class="single-page">
<!-- The actual blog post -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<section class="page">
<header class="page-header">
<?php if ( has_post_thumbnail() ) { ?>
<p class="featured-image"><img src="<?php echo pwp_featured_image($post->ID, 'url'); ?>" class="pure-img" alt="<?php echo pwp_featured_image($post->ID, 'alt'); ?>"/></p>
<?php } ?>
<h1 class="page-title"><?php the_title(); ?></h1>
</header>
<div class="page-content">
<?php the_content(); ?>
</div>
</section>
<?php endwhile; endif; ?>
</div> <!-- /.page -->
</div> <!-- /.container -->
</div> <!-- /#main -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>