[ SEA-GHOST MINI SHELL]
<?php
/**
* The template for displaying Archive pages.
*
* Used to display archive-type pages if nothing more specific matches a query.
* For example, puts together date-based pages if no date.php file exists.
*
* If you'd like to further customize these archive views, you may create a
* new template file for each specific one.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @since 1.0.0
*/
get_header(); ?>
<section id="primary" <?php bavotasan_primary_attr(); ?>>
<?php if ( have_posts() ) : ?>
<header id="archive-header">
<div class="container">
<div class="row">
<div class="col-sm-12">
<?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
the_archive_description( '<div class="archive-meta">', '</div>' );
?>
</div>
</div>
</div>
</header><!-- #archive-header -->
<?php
while ( have_posts() ) : the_post();
/* Include the post format-specific template for the content. If you want to
* this in a child theme then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_format() );
endwhile;
bavotasan_pagination();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</section><!-- #primary.c8 -->
<?php get_footer(); ?>
SEA-GHOST - SHELL CODING BY SEA-GHOST