-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpage.php
35 lines (19 loc) · 804 Bytes
/
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
<?php get_header(); ?>
<!-- Header -->
<div id="pagemain">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="staticpage" <?php post_class('post single'); ?>>
<h2 class="major"><?php the_title(); ?></h2>
<?php
if ( has_post_thumbnail() )
echo '<span class="main image">';
the_post_thumbnail('page-thumb');
echo '</span>';
?>
<?php the_content(); ?>
<p class="align-center"><a href="<?php echo site_url(); ?>" class="button special icon fa-hand-o-left">return</a></p>
</div>
<?php endwhile; else: ?>
<p><?php _e("We couldn't find any boxes that matched your query. Please try again.", "dimension"); ?></p>
<?php endif; ?>
<?php get_footer(); ?>