-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-about_cert.php
32 lines (32 loc) · 1.09 KB
/
page-about_cert.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
<? /* Template Name: О компании (сертификаты) */ ?>
<? get_header(); ?>
<section>
<div class="row">
<? do_action('colombo_get_page_title'); ?>
<div class="tabs">
<div class="all-tabs">
<div class="tab">
<? while ( have_posts() ) : the_post(); ?>
<h3 class="tab-title"><?= get_field('about_subtitle'); ?></h3>
<p><? the_content(); ?></p>
<div class="certificates-galery">
<ul>
<? if(count(get_field('about_gallery')) > 0) : ?>
<? foreach (get_field('about_gallery') as $img): ?>
<li>
<a class="fancybox" href="<?= $img['url']; ?>" rel="production-galery">
<img src="<?= $img['sizes']['shop_catalog']; ?>" alt="<?= $img['alt'] ?>">
</a>
</li>
<? endforeach; ?>
<? endif; ?>
</ul>
</div>
</div>
<? endwhile; ?>
</div>
</div>
</div>
</div>
</section>
<? get_footer(); ?>