-
Notifications
You must be signed in to change notification settings - Fork 216
/
archive-circolare.php
executable file
·57 lines (47 loc) · 1.61 KB
/
archive-circolare.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* The template for displaying archive
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#archive
*
* @package Design_Scuole_Italia
*/
$class = "petrol";
get_header();
?>
<main id="main-container" class="main-container <?php echo $class; ?>>">
<?php get_template_part("template-parts/common/breadcrumb"); ?>
<?php get_template_part("template-parts/hero/notizie", "archive"); ?>
<?php
get_template_part( 'template-parts/search/toggle-search-filters-mobile' );
?>
<section class="section bg-gray-light">
<div class="container">
<div class="row variable-gutters sticky-sidebar-container">
<div class="col-lg-3 bg-white bg-white-left">
<?php get_template_part("template-parts/search/filters", "circolare"); ?>
</div>
<div class="col-lg-7 offset-lg-1 pt84">
<?php if ( have_posts() ) : ?>
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/list/article', get_post_type() );
endwhile;
?>
<nav class="pagination-wrapper" aria-label="Navigazione della pagina">
<?php echo dsi_bootstrap_pagination(); ?>
</nav>
<?php
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div><!-- /col-lg-8 -->
</div><!-- /row -->
</div><!-- /container -->
</section>
</main>
<?php
get_footer();