12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- get_header(); ?>
- <div id="primary" class="content-area">
- <main id="main" class="<?php echo esc_attr( pen_content_classes() ); ?>" role="main">
- <div class="pen_article_wrapper">
- <?php
- if ( have_posts() ) {
- if ( is_home() && ! is_front_page() ) {
- ?>
- <header>
- <h1 class="page-title screen-reader-text">
- <?php
- single_post_title();
- ?>
- </h1>
- </header>
- <?php
- }
- $content_list_type = pen_list_type();
- if ( 'masonry' === $content_list_type ) {
- ?>
- <div id="pen_masonry">
- <?php
- }
-
- while ( have_posts() ) {
- the_post();
-
- get_template_part( 'partials/content', get_post_type() );
- }
- if ( 'masonry' === $content_list_type ) {
- ?>
- </div>
- <?php
- }
- get_template_part( 'partials/content', 'pagination' );
- } else {
- get_template_part( 'partials/content', 'none' );
- }
- ?>
- </div>
- </main>
- <?php
- if ( ! is_singular() ) {
- pen_html_jump_menu( 'list' );
- }
- ?>
- </div><!--
- <?php
- get_footer();
|