some page templates

This commit is contained in:
2018-08-10 18:48:11 -05:00
parent be874660e3
commit 6bac3c395b
11 changed files with 178 additions and 28 deletions

22
loop.php Normal file
View File

@ -0,0 +1,22 @@
<?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');
}
?>