forked from taiwubin/CSEIU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
30 lines (25 loc) · 1.03 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
<?php get_header();?>
<div class="body-container">
<div class="container">
<div class="main-container-size">
<?php get_sidebar('left')?>
<section class="main-content-size row-40 entry">
<div class="title row-20">Posts on <b><?php echo get_the_date();?></b></div>
<?php if ( have_posts() ): while ( have_posts() ): the_post();?>
<div class="a-post-container a-post a-post-size row-20">
<div class="post-title">
<a href="<?php the_permalink();?>">
<?php the_title();?>
</a>
</div>
<div class="post-excerpt">
<?php the_excerpt_max_charlength(320);?>
<?php get_template_part( 'entry-meta' );?>
</div>
</div>
<?php endwhile; endif?>
</section>
</div>
</div>
</div>
<?php get_footer();?>