PluginProbe
SpiceBox / 0.3.3
SpiceBox v0.3.3
trunk 0.2.2 0.2.3 0.2.4 0.2.5 0.2.6 0.2.7 0.2.8 0.2.9 0.3 0.3.1 0.3.2 0.3.3 0.3.4 0.3.5 0.3.6 0.3.7 0.3.8 0.3.9.1 0.3.9.2 0.4 0.5 0.6 0.7 1.0 All 76 releases
spicebox / inc / innofit / sections / innofit-about-section.php

innofit-about-section.php in SpiceBox 0.3.3, at inc/innofit/sections/innofit-about-section.php

40 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 add_action('innofit_about_action','innofit_about_section');
3
4 function innofit_about_section()
5 {
6 $about_section_enabled = get_theme_mod('home_about_section_enabled','on');
7 $about_section_background = get_theme_mod('innofit_about_section_background');
8 if($about_section_enabled !='off')
9 {
10 $about_image = SPICEB_PLUGIN_URL .'inc/innofit/images/about/about.jpg';
11 $default = __('<div class="row v-center">
12 <div class="col-md-5 col-sm-5 col-xs-12">
13 <figure class="about-thumbnail mbottom-50">
14 <img src="'.$about_image.'" alt="About">
15 </figure>
16 </div>
17
18 <div class="col-md-7 col-sm-7 col-xs-12">
19 <div class="about-content mbottom-50">
20 <h6 class="entry-subtitle">Welcome to <span class="text-default">Innofit</span></h6>
21 <h1 class="entry-title">We have the right solutions</h1>
22 <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totame rems aperiam, eaque ipsa quae ab illo inventore veritatis quasi architecto beatae vitaes dicta sunt explicabo. Nemo enim ipsam voluptatem.</p>
23 <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
24 <div class="ptop-15"><a href="#" class="btn-ex-small btn-animate border">Our Story</a></div>
25 </div>
26 </div>
27 </div>
28
29 ','spicebox');
30 $about_section_content = get_theme_mod('about_section_content',$default);
31 ?>
32 <section class="section-module about bg-grey <?php if($about_section_background=='') {?> left-right-half<?php }?>" <?php if($about_section_background!='') {?> style="background-image: url(<?php echo $about_section_background; ?>);"<?php } ?> id="about">
33 <div class="container">
34 <?php
35 echo $about_section_content;
36 ?> </div>
37 </section> <?php
38 }
39 }
40 ?>