-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
26 lines (24 loc) · 935 Bytes
/
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
<?php $t =& peTheme(); ?>
<?php $content =& $t->content; ?>
<?php get_header(); ?>
<section class="content padded container blog" id="blog-category">
<div class="title grid-full">
<h1 class="news-page-title" style="text-transform: capitalize !important;"><?php echo get_the_date('F Y'); ?></h1>
<span class="border"></span>
</div>
<div class="grid-4">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="news-post-block">
<h2 class="news-post-title"><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="news-post-meta"><?php echo get_the_date(); ?></p>
<?php if(has_post_thumbnail()) { ?>
<div class="news-thumb"><?php echo get_the_post_thumbnail(); ?></div>
<?php } ?>
<div class="news-excerpt"><?php the_excerpt() ?></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</section>
<?php get_footer(); ?>