-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfront-page-cards.php
More file actions
41 lines (32 loc) · 1.15 KB
/
Copy pathfront-page-cards.php
File metadata and controls
41 lines (32 loc) · 1.15 KB
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
<?php get_header(); ?>
<!-- TEMPLATE FRONT-PAGE.PHP v. row -2 -->
<main class="container">
<div class="row">
<div class="card-columns">
<!-- <div class="col-md-12">-->
<!-- <div class="row">-->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div <?php post_class('card'); ?>>
<!-- immagine in evidenza -->
<a href="<?php the_permalink(); ?> ">
<?php the_post_thumbnail('full',array('class' => 'img-responsive card-img-top')); ?>
</a>
<div class="card-body">
<div class="card-title">
<h2><a href="<?php the_permalink(); ?> "><?php the_title(); ?></a></h2>
</div>
<?php the_excerpt() ?>
<a href="<?php the_permalink(); ?>"><span class="readmore">Continua a leggere »</span></a>
</div>
</div>
<?php endwhile; else: ?>
<div class="articolo">
<h2>Attenzione!</h2>
<p>Nessun elemento trovato</p>
</div>
<?php endif; ?>
</div>
<div class="navigation text-center"><?php pagination_nav(); ?></div>
</div>
</main>
<?php get_footer(); ?>