-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-roofing.php
40 lines (38 loc) · 1.75 KB
/
page-roofing.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
<?php get_header("other"); ?>
<!-- Photo Gallery Start Here -->
<section class="project-wrap-layout2 bg-common" data-bg-image="img/project/project-bg.jpg">
<div class="container">
<div class="heading-layout1">
<div class="item-subtitle">Photo Gallery by Service Category</div>
<h2>Our Photo Callery</h2>
</div>
<div class="isotope-wrap">
<div class="text-center">
<div class="isotope-classes-tab isotop-btn-1">
<a class="current nav-item" data-filter="*">All</a>
<a class="nav-item" data-filter=".roofing">Roofing</a>
<a class="nav-item" data-filter=".siding">Siding</a>
</div>
</div>
<div class="row featuredContainer" id="no-equal-gallery">
<?php $images =& get_children( 'post_type=attachment&post_mime_type=image' ); ?>
<?php foreach((array) $images as $attachment_id => $attachment): ?>
<div class="col-lg-4 col-md-6 col-12 no-equal-item roofing">
<div class="project-box-layout2">
<div class="item-img">
<?= wp_get_attachment_image( $attachment_id, [500, 400] ); ?>
</div>
<div class="item-content">
<div class="item-heading">
<div class="item-subtitle">Roofing</div>
</div>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</div>
</section>
<!-- Photo Gallery End Here -->
<?php get_footer(); ?>