?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/themes/wagency/



?? Go up: /home/webdevt/www/wdp/wp-content/themes

?? Viewing: archive.php

<?php
/**
 * The template for displaying Archive pages
 */

get_header(); ?>

    <div class="<?php do_action( 'atiframebuilder_blog_number_of_columns' ); ?>">

		<?php if ( have_posts() ) : ?>

			<?php /* The loop */ ?>
			<?php while ( have_posts() ) : the_post(); ?>
				<?php get_template_part( 'content' ); ?>
			<?php endwhile; ?>

			<?php
            do_action( 'atiframebuilder_layout_archive_nav' );
			?>

		<?php else : ?>
			<?php get_template_part( 'content', 'none' ); ?>
		<?php endif; ?>


	</div><!-- #primary -->

<?php get_footer(); ?>


??

??