This commit is contained in:
Ben Goldsworthy 2021-02-06 15:20:58 +00:00
parent 0a2e902c89
commit da746d3e10
2 changed files with 31 additions and 3 deletions

View file

@ -11,6 +11,18 @@ get_header(); ?>
<main id="list-page" class="col-10 col-m-12" role="main">
<header>
<h1>Quotes.</h1>
<?php
echo wp_kses_post(
get_the_posts_pagination(
array(
'screen_reader_text' => ' ',
'mid_size' => 20,
'prev_text' => '',
'next_text' => '',
)
)
);
?>
</header>
<section class="row">
@ -36,6 +48,21 @@ get_header(); ?>
?>
</ul>
</section><!-- .site-main -->
<footer>
<?php
echo wp_kses_post(
get_the_posts_pagination(
array(
'screen_reader_text' => ' ',
'mid_size' => 20,
'prev_text' => '',
'next_text' => '',
)
)
);
?>
</footer>
</main><!-- .content-area -->
<?php get_footer(); ?>