-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsingle-industries.php
56 lines (35 loc) · 1.67 KB
/
single-industries.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php get_header(); ?>
<div class="content">
<?php $banner = get_field('home_page_banner'); ?>
<div class="pg_banner" style ="background-image: url('<?php echo $banner; ?>')">
<div class="overlay"></div>
</div>
<div class="section-l clearfix">
<div class="inner-wrap">
<div class="det_hld">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="det_title"><?php echo the_title(); ?></div>
<div class="source_det clearfix">
<div class="news-t"><a href="<?php echo site_url('/industries'); ?>/#real_sec"><?php echo get_post_meta(get_the_ID(), 'sector', true); ?></a></div>
</div>
<div class="sec_cap -js_anime">Overview</div>
<div class="det_text">
<p><?php echo get_field('overview');?></p>
</div>
<div class="det_photo">
<img src="<?php echo get_the_post_thumbnail_url(); ?>" />
</div>
<div class="sec_cap -js_anime">Capabilities</div>
<div class="det_text">
<p><?php echo get_field('capabilities');?></p>
</div>
<div class="sec_cap -js_anime">Expertise</div>
<div class="det_text">
<p><?php echo get_field('expertise');?></p>
</div>
<?php endwhile; endif; ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>