-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive-objects.php
41 lines (40 loc) · 1.16 KB
/
archive-objects.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
<?php get_header(); ?>
<main role="main" aria-label="Content">
<header class="object-archive-header">
<div class="row mx-0 w-100">
<div class="object-header-close container">
<div class="row">
<span class="object-header-toggle"><i class="fas fa-times fa-2x"></i></span>
</div>
</div>
<div class="object-archive-slider px-0 w-100"></div>
</div>
</header>
<section class="object-filters mt-5 pt-5 container">
<div class="row">
<div class="col-12">
<div class="facet-container">
<?php echo facetwp_display( 'facet', 'object_type' ); ?>
</div>
</div>
<div class="col-12 col-md-6">
<div class="facet-container">
<span class="label">Sort by Culture</span>
<?php echo facetwp_display( 'facet', 'culture' ); ?>
</div>
</div>
</div>
</section>
<section class="object-archive-posts container">
<div class="row">
<?php
while (have_posts()) : the_post();
get_template_part( 'loop-object');
endwhile;
?>
</div>
<?php get_template_part('pagination'); ?>
</section>
</main>
<?php
get_footer();