-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-industry.php
36 lines (33 loc) · 1.18 KB
/
page-industry.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
<?php
add_action('wp_head', 'schema_head');
get_header();
wp_enqueue_style('front-page');
?>
<div class="container-fluid front-page area-industry">
<div class="row">
<div class="col-md-6 col-xs-12 panel">
<div class="col-md-2"></div>
<div class="col-md-8 col-sm-12">
<a href="<?php echo get_page_permalink("machine-vision"); ?>">
<h1>Machine vision</h1>
</a>
</div>
<div class="col-md-2"></div>
<div class="panel-bg" style="background-image:<?php echo css_darken_image("https://raw.githubusercontent.com/stt-systems/assets/main/web-backgrounds/machine-vision.jpg", 0);?>"></div>
</div>
<div class="col-md-6 col-xs-12 panel">
<div class="col-md-2"></div>
<div class="col-md-8 col-sm-12">
<a href="<?php echo get_page_permalink("product-configurators"); ?>">
<h1>Product configurators</h1>
</a>
</div>
<div class="col-md-2"></div>
<div class="panel-bg" style="background-image:<?php echo css_darken_image("https://raw.githubusercontent.com/stt-systems/assets/main/web-backgrounds/product-configurators.jpg", 0);?>"></div>
</div>
</div>
</div>
<?php
echo get_clients_carousel('industry', 8);
?>
<?php get_footer(); ?>