Modularización de GKACHELE SaaS
This commit is contained in:
46
wp-content/themes/abiz/archive.php
Normal file
46
wp-content/themes/abiz/archive.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying archive pages.
|
||||
*/
|
||||
get_header();
|
||||
get_template_part('/template-parts/site', 'breadcrumb');
|
||||
?>
|
||||
<section id="abiz-blog-section" class="blog-section st-py-default">
|
||||
<div class="container">
|
||||
<div class="row gy-lg-0 gy-5 wow fadeInUp">
|
||||
<div class="<?php if ( is_active_sidebar('sidebar-primary') ){ esc_attr_e('col-lg-8','abiz'); } else { esc_attr_e('col-lg-12','abiz'); } ?>">
|
||||
<div class="row row-cols-1 row-cols-lg-2 row-cols-md-2 gx-5 gy-5">
|
||||
<?php if( have_posts() ):
|
||||
while( have_posts() ) : the_post(); ?>
|
||||
<div class="col">
|
||||
<?php get_template_part('template-parts/content','page'); ?>
|
||||
</div>
|
||||
<?php endwhile;
|
||||
else:
|
||||
get_template_part('template-parts/content','none');
|
||||
endif; ?>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-12 text-center mt-5">
|
||||
<div class="fx-post-pagination">
|
||||
<?php
|
||||
// Pagination.
|
||||
the_posts_pagination(
|
||||
array(
|
||||
'prev_text' => '<i class="fa fa-angle-left"></i>',
|
||||
'next_text' => '<i class="fa fa-angle-right"></i>',
|
||||
)
|
||||
);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
// Sidebar
|
||||
get_sidebar();
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<?php get_footer(); ?>
|
||||
Reference in New Issue
Block a user