23 lines
505 B
PHP
23 lines
505 B
PHP
<?php
|
|
if ( have_posts() ) {
|
|
while ( have_posts() ) {
|
|
the_post();
|
|
|
|
echo "<section class=\"loop-row\">";
|
|
echo "<div class=\"loop-image\">";
|
|
the_post_thumbnail();
|
|
echo "</div>";
|
|
|
|
echo "<div class=\"loop-content\">";
|
|
echo "<a href=\"".get_permalink()."\">";
|
|
the_title( '<h1>', '</h1>' );
|
|
echo "</a>";
|
|
the_excerpt();
|
|
echo "</div>";
|
|
echo "</section>";
|
|
}
|
|
|
|
get_template_part('pagination');
|
|
}
|
|
?>
|