-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
38 lines (30 loc) · 1.01 KB
/
archive.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
<?php get_header(); ?>
<div class="page-background cover" style="background-image:url('<?php $url = content_url(); echo $url; ?>/uploads/2013/09/WaterFoam0019_1_L.png')">
<div class="texture alpha25"></div>
</div>
<div class="wrapper clearfix postlist no-border">
<div class="container width">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?>>
<a href="<?php the_permalink() ?>">
<div class="pad_20 clearfix">
<h4 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h4>
<h5><?php include (TEMPLATEPATH . '/_inc/meta.php' ); ?></h5>
<p><?php the_excerpt() ?></p>
<div class="btn">
<div class="shape"></div>
<span>READ</span>
</div>
</div>
</a>
</div>
<div class="pad_5 clearfix"></div>
<?php endwhile; endif; ?>
</div>
</div>
<div class="wrapper clearfix">
<div class="pagination">
<?php if (function_exists('wp_corenavi')) wp_corenavi(); ?>
</div>
</div>
<?php get_footer(); ?>