-
Notifications
You must be signed in to change notification settings - Fork 929
Expand file tree
/
Copy pathskin-4.php
More file actions
63 lines (51 loc) · 2.25 KB
/
skin-4.php
File metadata and controls
63 lines (51 loc) · 2.25 KB
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
57
58
59
60
61
62
63
<?php
/*
type: layout
name: 4 Columns icons with Parallax
position: 4
*/
?>
<?php include 'settings_padding_front.php'; ?>
<?php include 'settings_is_parallax_front.php'; ?>
<?php include 'settings_is_color_front.php'; ?>
<?php
/* Overlay */
$overlay = get_option('overlay', $params['id']);
if ($overlay === null OR $overlay === false) {
$overlay = '3';
}
?>
<section class="imagebg safe-mode section--even stats-1 <?php if($is_parallax == 'yes'): ?>parallax<?php endif; ?> nodrop edit <?php print $padding ?>" data-overlay="<?php print $overlay; ?>" field="layout-skin-4-<?php print $params['id'] ?>"
rel="module">
<div class="background-image-holder" style="background-image: url('<?php print template_url('assets/img/'); ?>hero2.jpg');"></div>
<div class="row wide-grid">
<div class="col-sm-3 col-xs-6 cloneable">
<div class="feature feature-1 text-center">
<i class="icon icon--lg icon-Bodybuilding safe-element"></i>
<h3>16,000+</h3>
<span class="safe-element"><em><?php _lang("Customers strong", "templates/dream"); ?></em></span>
</div>
</div>
<div class="col-sm-3 col-xs-6 cloneable">
<div class="feature feature-1 text-center">
<i class="icon icon--lg icon-Fingerprint safe-element"></i>
<h3>16</h3>
<span class="safe-element"><em><?php _lang("Passionate team members", "templates/dream"); ?></em></span>
</div>
</div>
<div class="col-sm-3 col-xs-6 cloneable">
<div class="feature feature-1 text-center">
<i class="icon icon--lg icon-Astronaut safe-element"></i>
<h3>82</h3>
<span class="safe-element"><em><?php _lang("Launched startups", "templates/dream"); ?></em></span>
</div>
</div>
<div class="col-sm-3 col-xs-6 cloneable">
<div class="feature feature-1 text-center">
<i class="icon icon--lg icon-Cardigan safe-element"></i>
<h3><?php _lang("Zero", "templates/dream"); ?></h3>
<span class="safe-element"><em><?php _lang("Plaid cardigans", "templates/dream"); ?></em></span>
</div>
</div>
</div>
</section>