-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome-info.php
26 lines (25 loc) · 890 Bytes
/
home-info.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
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="what-we-do">
<h1><?php the_field('what_we_do_section_title'); ?></h1>
<div class="info-section">
<?php if( have_rows('home_info') ): ?>
<?php while( have_rows('home_info') ): the_row();
// vars
$icon = get_sub_field('icon');
$content = get_sub_field('info');
$title = get_sub_field('title');
?>
<div class="col-md-4">
<i class="icon <?php echo $icon; ?>"></i>
<span class="title"><?php echo $title; ?></span>
<div class="content"><?php echo $content; ?></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div> <!-- info -->
</div> <!-- what we do -->
</div>
</div>
</div>