1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- get_header(); ?>
- <div id="archive_page" class="container-full-width">
- <div class="container">
- <div class="container-fluid">
- <?php do_action( 'cyberchimps_before_container' ); ?>
- <div id="container" <?php cyberchimps_filter_container_class(); ?>>
- <div class="container">
- <?php do_action( 'cyberchimps_before_content_container' ); ?>
- <div id="content" <?php cyberchimps_filter_content_class(); ?>>
- <?php do_action( 'cyberchimps_before_content' ); ?>
- <?php if( have_posts() ) : ?>
- <?php /* Start the Loop */ ?>
- <?php while( have_posts() ) : the_post(); ?>
- <?php
- /* Include the Post-Format-specific template for the content.
- * If you want to overload 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( 'content', get_post_format() );
- ?>
- <?php endwhile; ?>
- <?php else : ?>
- <?php get_template_part( 'no-results', 'archive' ); ?>
- <?php endif; ?>
- <?php do_action( 'cyberchimps_after_content' ); ?>
- </div>
- <!-- #content -->
- <?php do_action( 'cyberchimps_after_content_container' ); ?>
- </div>
- <!-- .container -->
- </div>
- <!-- #container .row-fluid-->
- <?php do_action( 'cyberchimps_after_container' ); ?>
- </div>
- <!--container fluid -->
- </div>
- <!-- container -->
- </div><!-- container full width -->
- <?php get_footer(); ?>
|