-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
46 lines (25 loc) · 907 Bytes
/
index.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
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="span10 schtuff">
<div class="inner">
<article class="white_box">
<h2>Latest Reviews</h2>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_post_thumbnail('review-large'); ?>
<div class="white_box">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<?php the_content(); ?>
</div>
<div class="clear"></div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</article>
<?php if(function_exists('wp_paginate')) { wp_paginate(); } ?>
</div><!--//Inner-->
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>