forked from lehnihon/portabilis
-
Notifications
You must be signed in to change notification settings - Fork 3
/
archive.php
34 lines (34 loc) · 967 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
27
28
29
30
31
32
33
34
<?php
get_header('blog');
?>
<div id="page" class="blog">
<div class="container">
<div class="row">
<div class="col">
<?php the_archive_title( '<h1 class="page-title">', '</h1>' ); ?>
</div>
</div>
<div class="row blog-materiais">
<?php while ( have_posts() ) : the_post(); ?>
<article class="col-lg-4 col-sm-6">
<a href="<?php the_permalink(); ?>" title="">
<div class="row">
<div class="col-sm-4 mb-3 mb-sm-0">
<?php
the_post_thumbnail('blog-thumb', array(
'class' => "img-fluid",
))
?>
</div>
<div class="col-sm-8 align-self-center">
<h5><?php the_title(); ?></h5>
<p><?php the_excerpt_custom(20); ?></p>
</div>
</div>
</a>
</article>
<?php endwhile; ?>
</div>
</div>
</div><!-- #content -->
<?php get_footer(); ?>