'' . esc_html__( 'Next', 'auspicious' ) . '%title',
'prev_text' => '' . esc_html__( 'Previous', 'auspicious' ) . '%title',
)
);
comments_template();
} elseif ( 'content-page' === $feature ) {
while ( have_posts() ) :
the_post();
get_template_part( 'views/content/content', 'page' );
endwhile;
comments_template();
} elseif ( 'content-archive' === $feature ) {
if ( have_posts() ) : ?>
'' . esc_html__( 'Older', 'auspicious' ) . 'Projects',
'next_text' => '' . esc_html__( 'Newer', 'auspicious' ) . 'Projects',
)
);
comments_template();
} elseif ( 'jetpack-portfolio-archive' === $feature ) {
if ( have_posts() ) :
get_template_part( 'views/jetpack-portfolio/content', 'archive-jetpack-portfolio' );
the_posts_navigation(
array(
'prev_text' => '' . esc_html__( 'Older', 'auspicious' ) . 'Projects',
'next_text' => '' . esc_html__( 'Newer', 'auspicious' ) . 'Projects',
)
);
else :
get_template_part( 'views/content/content', 'none' );
endif;
}
}