* @license http://www.gnu.org/licenses/gpl-3.0.html GNU Public License */ get_header(); if ( have_posts() ) : /* Start the Loop */ while ( have_posts() ) : the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'components/post/content', get_post_format() ); endwhile; /* * The posts pagination outputs a set of page numbers with links to the previous and next pages of posts. * * @link https://codex.wordpress.org/Function_Reference/the_posts_pagination */ the_posts_pagination( array( 'prev_text' => sg_get_svg( array( 'icon' => 'left' ) ) . '' . __( 'Previous page', 'sg-lite' ) . '', 'next_text' => '' . __( 'Next page', 'sg-lite' ) . '' . sg_get_svg( array( 'icon' => 'right' ) ), 'before_page_number' => '' . __( 'Page', 'sg-lite' ) . ' ', ) ); else : get_template_part( 'components/post/content', 'none' ); endif; get_footer();