-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinventory.php
More file actions
63 lines (56 loc) · 1.42 KB
/
inventory.php
File metadata and controls
63 lines (56 loc) · 1.42 KB
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
58
59
60
61
62
63
<?php
/*
Template Name: Inventory
*/
?>
<?php get_header(); ?>
<!--<div class="fullContainer inventoryContainer greyBox">
<div class="fixedContainerBox">
<div class="fixedContainer">
<div class="tagFilterHolder">
<div class="filterButtonHolder">
<div class="filterButton filter_all" onclick="filterTags('all');">
<h6>all</h6>
</div>
</div>
<?php $allTags = get_tags(); ?>
<?php foreach($allTags as $tag){ ?>
<div class="filterButtonHolder">
<div class="filterButton <?php echo 'filter_'.$tag->term_id; ?>" onclick="filterTags(<?php echo $tag->term_id; ?>)">
<h6><?php print $tag->name; ?></h6>
</div>
</div>
<?php } ?>
<div class="clear"></div>
</div>
</div>
</div>
</div>-->
<div class="fullContainer galleryContainer">
<div class="fixedContainerBox">
<div class="fixedContainer">
<div class="galleryWrapper">
<div class="galleryBoxContainer js-isotope" data-isotope-options='{ "columnWidth": 280, "gutter":20, "itemSelector": ".galleryImageContainer" }'>
<div class="clear"></div>
</div>
<div class="loadMore" onclick="loadMore();">
<h5><a>Load More</a></h5>
</div>
</div>
</div>
</div>
<?php if ($_SESSION['filterJson']){ ?>
<script>
//filterTags('all');
placeFilterOptions( '<?php echo $_SESSION['filterJson'] ?>' );
//searchWord('city');
</script>
<?php }else{ ?>
<script>
filterBDs();
</script>
<?php } ?>
<script>
searchToggle();
</script>
<?php get_footer(); ?>