-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpage.php
42 lines (26 loc) · 938 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
36
37
38
39
40
41
42
<?php get_header(); ?>
<div id="main-content" class="row">
<div class="eightcol">
<div class="content clearfix">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="entry clearfix">
<?php the_post_thumbnail('thumbnail'); ?>
<h2 class="title"><?php the_title(); ?></h2>
<?php the_content(); ?>
</div><!--end .entry-->
<?php endwhile; ?>
<?php else : ?>
<div class="entry">
<h2 class="title">Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
</div><!--end .entry-->
<?php endif; ?>
</div><!--end .content-->
</div><!--end .eightcol-->
<div class="fourcol last">
<?php get_sidebar(); ?>
</div><!--end .fourcol-->
</div><!--end .row#main-content-->
<?php get_footer(); ?>