new chiefsoft
This commit is contained in:
@@ -50,6 +50,53 @@ class BaseController extends Controller
|
||||
// E.g.: $this->session = \Config\Services::session();
|
||||
}
|
||||
|
||||
public function APIcall($method, $url, $data) {
|
||||
// $curl = curl_init();
|
||||
$curl = curl_init($url);
|
||||
switch ($method) {
|
||||
case "GET":
|
||||
$params2 = '';
|
||||
foreach($data as $key2=>$value2)
|
||||
$params2 .= $key2.'='.$value2.'&';
|
||||
|
||||
$params2 = trim($params2, '&');
|
||||
$url = $url.'?'.$params2;// add param to URL
|
||||
log_message('critical', "API URL FINAL =>".$url );
|
||||
//curl_setopt($curl, CURLOPT_FRESH_CONNECT, true);
|
||||
//curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
||||
//curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
|
||||
break;
|
||||
case "POST":
|
||||
curl_setopt($curl, CURLOPT_POST, 1);
|
||||
if ($data)
|
||||
// curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
|
||||
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($data));
|
||||
// curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
|
||||
break;
|
||||
case "PUT":
|
||||
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "PUT");
|
||||
if ($data)
|
||||
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
|
||||
break;
|
||||
}
|
||||
|
||||
curl_setopt($curl, CURLOPT_URL, $url);
|
||||
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
|
||||
'APIKEY: RegisteredAPIkey',
|
||||
'Content-Type: application/json',
|
||||
));
|
||||
|
||||
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
||||
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
|
||||
$result = curl_exec($curl);
|
||||
|
||||
if(!$result) {
|
||||
echo("Connection failure!");
|
||||
}
|
||||
curl_close($curl);
|
||||
return json_decode($result, true);
|
||||
}
|
||||
|
||||
var $template = array(
|
||||
'table_open' => "<table class='table table-sm table-striped table-hover table-bordered table-condensed'>",
|
||||
'thead_open' => '<thead class=\'bg-indigo\'>',
|
||||
|
||||
@@ -14,11 +14,27 @@ class Home extends BaseController
|
||||
}
|
||||
|
||||
public function home2(){
|
||||
return view('main/home');
|
||||
$data = [];
|
||||
return $this->sitePage("home", $data);
|
||||
}
|
||||
|
||||
|
||||
private function sitePage($curr_page, $data){
|
||||
return view('main/header').view('main/home').view('main/footer');
|
||||
}
|
||||
public function home(){
|
||||
return view('site/home');
|
||||
|
||||
$siteData =[];
|
||||
$out = $this->APIcall('GET','https://blogdata.chiefsoft.net/blogdata/chiefsoft',[]); // https://blogdata.chiefsoft.net/
|
||||
$siteData['blogdata'] = $out['payload']['blogdata'];
|
||||
|
||||
$data=array();
|
||||
|
||||
$data["blog_featured"] = $siteData['blogdata'][0];
|
||||
$data["blog_array"] =array_slice( $siteData['blogdata'], 0, 7); // $siteData['blogdata'];
|
||||
|
||||
|
||||
return view('site/home', $data);
|
||||
}
|
||||
public function about(){
|
||||
$data=array();
|
||||
@@ -76,6 +92,15 @@ class Home extends BaseController
|
||||
|
||||
}
|
||||
|
||||
$siteData =[];
|
||||
$out = $this->APIcall('GET','https://blogdata.chiefsoft.net/blogdata/chiefsoft',[]); // https://blogdata.chiefsoft.net/
|
||||
$siteData['blogdata'] = $out['payload']['blogdata'];
|
||||
|
||||
$data=array();
|
||||
|
||||
$data["blog_featured"] = $siteData['blogdata'][0];
|
||||
$data["blog_array"] =array_slice( $siteData['blogdata'], 0, 7); // $siteData['blogdata'];
|
||||
|
||||
|
||||
|
||||
$this->renderSitePage('blog',$data);
|
||||
|
||||
@@ -0,0 +1,186 @@
|
||||
|
||||
|
||||
<!-- FOOTER-3
|
||||
============================================= -->
|
||||
<footer id="footer-3" class="pt-100 footer">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<!-- FOOTER CONTENT -->
|
||||
<div class="row">
|
||||
|
||||
|
||||
<!-- FOOTER LOGO -->
|
||||
<div class="col-xl-3">
|
||||
<div class="footer-info">
|
||||
<img class="footer-logo" src="/chiefsoft/images/logo-purple.png" alt="footer-logo">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- FOOTER LINKS -->
|
||||
<div class="col-sm-4 col-md-3 col-xl-2">
|
||||
<div class="footer-links fl-1">
|
||||
|
||||
<!-- Title -->
|
||||
<h6 class="s-17 w-700">Company</h6>
|
||||
|
||||
<!-- Links -->
|
||||
<ul class="foo-links clearfix">
|
||||
<li><p><a href="about.html">About Us</a></p></li>
|
||||
<li><p><a href="careers.html">Careers</a></p></li>
|
||||
<li><p><a href="blog-listing.html">Our Blog</a></p></li>
|
||||
<li><p><a href="contacts.html">Contact Us</a></p></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div> <!-- END FOOTER LINKS -->
|
||||
|
||||
|
||||
<!-- FOOTER LINKS -->
|
||||
<div class="col-sm-4 col-md-3 col-xl-2">
|
||||
<div class="footer-links fl-2">
|
||||
|
||||
<!-- Title -->
|
||||
<h6 class="s-17 w-700">Product</h6>
|
||||
|
||||
<!-- Links -->
|
||||
<ul class="foo-links clearfix">
|
||||
<li><p><a href="features.html">Integration</a></p></li>
|
||||
<li><p><a href="reviews.html">Customers</a></p></li>
|
||||
<li><p><a href="pricing-1.html">Pricing</a></p></li>
|
||||
<li><p><a href="help-center.html">Help Center</a></p></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div> <!-- END FOOTER LINKS -->
|
||||
|
||||
|
||||
<!-- FOOTER LINKS -->
|
||||
<div class="col-sm-4 col-md-3 col-xl-2">
|
||||
<div class="footer-links fl-3">
|
||||
|
||||
<!-- Title -->
|
||||
<h6 class="s-17 w-700">Legal</h6>
|
||||
|
||||
<!-- Links -->
|
||||
<ul class="foo-links clearfix">
|
||||
<li><p><a href="terms.html">Terms of Use</a></p></li>
|
||||
<li><p><a href="privacy.html">Privacy Policy</a></p></li>
|
||||
<li><p><a href="cookies.html">Cookie Policy</a></p></li>
|
||||
<li><p><a href="#">Site Map</a></p></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div> <!-- END FOOTER LINKS -->
|
||||
|
||||
|
||||
<!-- FOOTER LINKS -->
|
||||
<div class="col-sm-6 col-md-3">
|
||||
<div class="footer-links fl-4">
|
||||
|
||||
<!-- Title -->
|
||||
<h6 class="s-17 w-700">Connect With Us</h6>
|
||||
|
||||
<!-- Mail Link -->
|
||||
<p class="footer-mail-link ico-25">
|
||||
<a href="mailto:yourdomain@mail.com">hello@yourdomain.com</a>
|
||||
</p>
|
||||
|
||||
<!-- Social Links -->
|
||||
<ul class="footer-socials ico-25 text-center clearfix">
|
||||
<li><a href="https://www.facebook.com/chiefsoft/"><span class="flaticon-facebook"></span></a></li>
|
||||
<li><a href="https://twitter.com/chiefsoft"><span class="flaticon-twitter"></span></a></li>
|
||||
<li><a href="https://www.f6s.com/member/olusesanameye"><span class="flaticon-github"></span></a></li>
|
||||
<li><a href="https://dribbble.com/chiefsoft"><span class="flaticon-dribbble"></span></a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div> <!-- END FOOTER LINKS -->
|
||||
|
||||
|
||||
</div> <!-- END FOOTER CONTENT -->
|
||||
|
||||
|
||||
<hr> <!-- FOOTER DIVIDER LINE -->
|
||||
|
||||
|
||||
<!-- BOTTOM FOOTER -->
|
||||
<div class="bottom-footer">
|
||||
<div class="row row-cols-1 row-cols-md-2 d-flex align-items-center">
|
||||
|
||||
|
||||
<!-- FOOTER COPYRIGHT -->
|
||||
<div class="col">
|
||||
<div class="footer-copyright"><p class="p-sm">© <?=date("Y");?> ChiefSoft Works. <span>All Rights Reserved</span></p></div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- FOOTER SECONDARY LINK -->
|
||||
<div class="col">
|
||||
<div class="bottom-secondary-link ico-15 text-end">
|
||||
<p class="p-sm">
|
||||
<!-- gg-->
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div> <!-- End row -->
|
||||
</div> <!-- END BOTTOM FOOTER -->
|
||||
|
||||
|
||||
</div> <!-- End container -->
|
||||
</footer> <!-- END FOOTER-3 -->
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- END PAGE CONTENT -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- EXTERNAL SCRIPTS
|
||||
============================================= -->
|
||||
<script src="/chiefsoft/js/jquery-3.7.0.min.js"></script>
|
||||
<script src="/chiefsoft/js/bootstrap.min.js"></script>
|
||||
<script src="/chiefsoft/js/modernizr.custom.js"></script>
|
||||
<script src="/chiefsoft/js/jquery.easing.js"></script>
|
||||
<script src="/chiefsoft/js/jquery.appear.js"></script>
|
||||
<script src="/chiefsoft/js/menu.js"></script>
|
||||
<script src="/chiefsoft/js/owl.carousel.min.js"></script>
|
||||
<script src="/chiefsoft/js/pricing-toggle.js"></script>
|
||||
<script src="/chiefsoft/js/jquery.magnific-popup.min.js"></script>
|
||||
<script src="/chiefsoft/js/quick-form.js"></script>
|
||||
<script src="/chiefsoft/js/jquery.validate.min.js"></script>
|
||||
<script src="/chiefsoft/js/jquery.ajaxchimp.min.js"></script>
|
||||
<script src="/chiefsoft/js/popper.min.js"></script>
|
||||
<script src="/chiefsoft/js/lunar.js"></script>
|
||||
<script src="/chiefsoft/js/wow.js"></script>
|
||||
|
||||
<!-- Custom Script -->
|
||||
<script src="/chiefsoft/js/custom.js"></script>
|
||||
|
||||
|
||||
<!-- Google Analytics: Change UA-XXXXX-X to be your site's ID. Go to http://www.google.com/analytics/ for more information. -->
|
||||
<!--
|
||||
<script>
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,202 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title><?=SITE_NAME?>,<?php echo isset($location->city) ? $location->city :''; ?> Software Development</title>
|
||||
<meta name="description" content= " ChiefSoft Works,over 20 years software development,software developers,custom software development, web and mobile development, QA services. Headquartered in Atlanta, Georgia."/>
|
||||
<meta name="author" content="ChiefSoft Works">
|
||||
|
||||
|
||||
<meta name="keywords" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- SITE TITLE -->
|
||||
|
||||
<!-- FAVICON AND TOUCH ICONS -->
|
||||
<link rel="shortcut icon" href="/chiefsoft/images/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/chiefsoft/images/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/chiefsoft/images/apple-touch-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/chiefsoft/images/apple-touch-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/chiefsoft/images/apple-touch-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" href="/chiefsoft/images/apple-touch-icon.png">
|
||||
<link rel="icon" href="/chiefsoft/images/apple-touch-icon.png" type="image/x-icon">
|
||||
|
||||
<!-- GOOGLE FONTS -->
|
||||
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- BOOTSTRAP CSS -->
|
||||
<link href="/chiefsoft/css/bootstrap.min.css" rel="stylesheet">
|
||||
|
||||
<!-- FONT ICONS -->
|
||||
<link href="/chiefsoft/css/flaticon.css" rel="stylesheet">
|
||||
|
||||
<!-- PLUGINS STYLESHEET -->
|
||||
<link href="/chiefsoft/css/menu.css" rel="stylesheet">
|
||||
<link id="effect" href="/chiefsoft/css/dropdown-effects/fade-down.css" media="all" rel="stylesheet">
|
||||
<link href="/chiefsoft/css/magnific-popup.css" rel="stylesheet">
|
||||
<link href="/chiefsoft/css/owl.carousel.min.css" rel="stylesheet">
|
||||
<link href="/chiefsoft/css/owl.theme.default.min.css" rel="stylesheet">
|
||||
<link href="/chiefsoft/css/lunar.css" rel="stylesheet">
|
||||
|
||||
<!-- ON SCROLL ANIMATION -->
|
||||
<link href="/chiefsoft/css/animate.css" rel="stylesheet">
|
||||
|
||||
<!-- TEMPLATE CSS -->
|
||||
<!-- <link href="/chiefsoft/css/blue-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/crocus-theme.css" rel="stylesheet">-->
|
||||
<!-- <link href="/chiefsoft/css/green-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/magenta-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/pink-theme.css" rel="stylesheet"> -->
|
||||
<link href="/chiefsoft/css/purple-theme.css" rel="stylesheet">
|
||||
<!-- <link href="/chiefsoft/css/skyblue-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/red-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/violet-theme.css" rel="stylesheet"> -->
|
||||
|
||||
<!-- RESPONSIVE CSS -->
|
||||
<link href="/chiefsoft/css/responsive.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<!-- PAGE CONTENT
|
||||
============================================= -->
|
||||
<div id="page" class="page font--jakarta">
|
||||
|
||||
<!-- HEADER
|
||||
============================================= -->
|
||||
<header id="header" class="tra-menu navbar-dark white-scroll">
|
||||
<div class="header-wrapper">
|
||||
|
||||
|
||||
<!-- MOBILE HEADER -->
|
||||
<div class="wsmobileheader clearfix">
|
||||
<span class="smllogo"><img src="/chiefsoft/images/chiefsoft-lg2.png" alt="mobile-logo"></span>
|
||||
<a id="wsnavtoggle" class="wsanimated-arrow"><span></span></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- NAVIGATION MENU -->
|
||||
<div class="wsmainfull menu clearfix">
|
||||
<div class="wsmainwp clearfix">
|
||||
|
||||
|
||||
<!-- HEADER BLACK LOGO -->
|
||||
<div class="desktoplogo">
|
||||
<a href="#hero-7" class="logo-black"><img src="/chiefsoft/images/chiefsoft-lg2.png" alt="logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- HEADER WHITE LOGO -->
|
||||
<div class="desktoplogo">
|
||||
<a href="#hero-7" class="logo-white"><img src="/chiefsoft/images/logo-purple-white.png" alt="logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- MAIN MENU -->
|
||||
<nav class="wsmenu clearfix">
|
||||
<ul class="wsmenu-list nav-theme">
|
||||
|
||||
|
||||
<!-- DROPDOWN SUB MENU -->
|
||||
<li aria-haspopup="true"><a href="#" class="h-link">About <span class="wsarrow"></span></a>
|
||||
<ul class="sub-menu">
|
||||
<li aria-haspopup="true"><a href="#lnk-1">Why Martex?</a></li>
|
||||
<li aria-haspopup="true"><a href="#features-2">Best Solutions</a></li>
|
||||
<li aria-haspopup="true"><a href="#lnk-2">Integrations</a></li>
|
||||
<li aria-haspopup="true"><a href="#lnk-3">How It Works</a></li>
|
||||
<li aria-haspopup="true"><a href="#reviews-2">Testimonials</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
||||
<!-- SIMPLE NAVIGATION LINK -->
|
||||
<li class="nl-simple" aria-haspopup="true"><a href="#features-13" class="h-link">Features</a></li>
|
||||
|
||||
|
||||
<!-- MEGAMENU -->
|
||||
<li aria-haspopup="true" class="mg_link"><a href="#" class="h-link">Pages <span class="wsarrow"></span></a>
|
||||
<div class="wsmegamenu w-75 clearfix">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
<!-- MEGAMENU LINKS -->
|
||||
<ul class="col-md-12 col-lg-3 link-list">
|
||||
<li class="fst-li"><a href="about.html">About Us</a></li>
|
||||
<li><a href="team.html">Our Team</a></li>
|
||||
<li><a href="careers.html">Careers <span class="sm-info">4</span></a></li>
|
||||
<li><a href="career-role.html">Career Details</a></li>
|
||||
<li><a href="contacts.html">Contact Us</a></li>
|
||||
</ul>
|
||||
|
||||
<!-- MEGAMENU LINKS -->
|
||||
<ul class="col-md-12 col-lg-3 link-list">
|
||||
<li><a href="features.html">Core Features</a></li>
|
||||
<li class="fst-li"><a href="projects.html">Our Projects</a></li>
|
||||
<li><a href="project-details.html">Project Details</a></li>
|
||||
<li><a href="reviews.html">Testimonials</a></li>
|
||||
<li><a href="download.html">Download Page</a></li>
|
||||
</ul>
|
||||
|
||||
<!-- MEGAMENU LINKS -->
|
||||
<ul class="col-md-12 col-lg-3 link-list">
|
||||
<li class="fst-li"><a href="pricing-1.html">Pricing Page #1</a></li>
|
||||
<li><a href="pricing-1.html">Pricing Page #2</a></li>
|
||||
<li><a href="faqs.html">FAQs Page</a></li>
|
||||
<li><a href="help-center.html">Help Center</a></li>
|
||||
<li><a href="404.html">404 Page</a></li>
|
||||
</ul>
|
||||
|
||||
<!-- MEGAMENU LINKS -->
|
||||
<ul class="col-md-12 col-lg-3 link-list">
|
||||
<li class="fst-li"><a href="blog-listing.html">Blog Listing</a></li>
|
||||
<li><a href="single-post.html">Single Blog Post</a></li>
|
||||
<li><a href="login-2.html">Login Page</a></li>
|
||||
<li><a href="signup-2.html">Signup Page</a></li>
|
||||
<li><a href="reset-password.html">Reset Password</a></li>
|
||||
</ul>
|
||||
|
||||
</div> <!-- End row -->
|
||||
</div> <!-- End container -->
|
||||
</div> <!-- End wsmegamenu -->
|
||||
</li> <!-- END MEGAMENU -->
|
||||
|
||||
|
||||
<!-- SIMPLE NAVIGATION LINK -->
|
||||
<li class="nl-simple" aria-haspopup="true"><a href="pricing-1.html" class="h-link">Pricing</a></li>
|
||||
|
||||
|
||||
<!-- SIMPLE NAVIGATION LINK -->
|
||||
<li class="nl-simple" aria-haspopup="true"><a href="#faqs-3" class="h-link">FAQs</a></li>
|
||||
|
||||
|
||||
<!-- SIGN IN LINK -->
|
||||
<li class="nl-simple reg-fst-link mobile-last-link" aria-haspopup="true">
|
||||
<a href="login-2.html" class="h-link">Sign in</a>
|
||||
</li>
|
||||
|
||||
|
||||
<!-- SIGN UP BUTTON -->
|
||||
<li class="nl-simple" aria-haspopup="true">
|
||||
<a href="signup-2.html" class="btn r-04 btn--theme hover--theme last-link">Sign up</a>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav> <!-- END MAIN MENU -->
|
||||
|
||||
|
||||
</div>
|
||||
</div> <!-- END NAVIGATION MENU -->
|
||||
|
||||
|
||||
</div> <!-- End header-wrapper -->
|
||||
</header> <!-- END HEADER -->
|
||||
+33
-818
@@ -1,206 +1,3 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="author" content="DSAThemes">
|
||||
<meta name="description" content="Martex - Software, App, SaaS & Startup Landing Pages Pack">
|
||||
<meta name="keywords" content="Responsive, HTML5, DSAThemes, Landing, Software, Mobile App, SaaS, Startup, Creative, Digital Product">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- SITE TITLE -->
|
||||
<title>Martex - Software, App, SaaS & Startup Landing Pages Pack</title>
|
||||
|
||||
<!-- FAVICON AND TOUCH ICONS -->
|
||||
<link rel="shortcut icon" href="/chiefsoft/images/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/chiefsoft/images/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/chiefsoft/images/apple-touch-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/chiefsoft/images/apple-touch-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/chiefsoft/images/apple-touch-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" href="/chiefsoft/images/apple-touch-icon.png">
|
||||
<link rel="icon" href="/chiefsoft/images/apple-touch-icon.png" type="image/x-icon">
|
||||
|
||||
<!-- GOOGLE FONTS -->
|
||||
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- BOOTSTRAP CSS -->
|
||||
<link href="/chiefsoft/css/bootstrap.min.css" rel="stylesheet">
|
||||
|
||||
<!-- FONT ICONS -->
|
||||
<link href="/chiefsoft/css/flaticon.css" rel="stylesheet">
|
||||
|
||||
<!-- PLUGINS STYLESHEET -->
|
||||
<link href="/chiefsoft/css/menu.css" rel="stylesheet">
|
||||
<link id="effect" href="/chiefsoft/css/dropdown-effects/fade-down.css" media="all" rel="stylesheet">
|
||||
<link href="/chiefsoft/css/magnific-popup.css" rel="stylesheet">
|
||||
<link href="/chiefsoft/css/owl.carousel.min.css" rel="stylesheet">
|
||||
<link href="/chiefsoft/css/owl.theme.default.min.css" rel="stylesheet">
|
||||
<link href="/chiefsoft/css/lunar.css" rel="stylesheet">
|
||||
|
||||
<!-- ON SCROLL ANIMATION -->
|
||||
<link href="/chiefsoft/css/animate.css" rel="stylesheet">
|
||||
|
||||
<!-- TEMPLATE CSS -->
|
||||
<!-- <link href="/chiefsoft/css/blue-theme.css" rel="stylesheet"> -->
|
||||
<link href="/chiefsoft/css/crocus-theme.css" rel="stylesheet">
|
||||
<!-- <link href="/chiefsoft/css/green-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/magenta-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/pink-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/purple-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/skyblue-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/red-theme.css" rel="stylesheet"> -->
|
||||
<!-- <link href="/chiefsoft/css/violet-theme.css" rel="stylesheet"> -->
|
||||
|
||||
<!-- RESPONSIVE CSS -->
|
||||
<link href="/chiefsoft/css/responsive.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<!-- PAGE CONTENT
|
||||
============================================= -->
|
||||
<div id="page" class="page font--jakarta">
|
||||
|
||||
<!-- HEADER
|
||||
============================================= -->
|
||||
<header id="header" class="tra-menu navbar-dark white-scroll">
|
||||
<div class="header-wrapper">
|
||||
|
||||
|
||||
<!-- MOBILE HEADER -->
|
||||
<div class="wsmobileheader clearfix">
|
||||
<span class="smllogo"><img src="/chiefsoft/images/logo-purple.png" alt="mobile-logo"></span>
|
||||
<a id="wsnavtoggle" class="wsanimated-arrow"><span></span></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- NAVIGATION MENU -->
|
||||
<div class="wsmainfull menu clearfix">
|
||||
<div class="wsmainwp clearfix">
|
||||
|
||||
|
||||
<!-- HEADER BLACK LOGO -->
|
||||
<div class="desktoplogo">
|
||||
<a href="#hero-7" class="logo-black"><img src="/chiefsoft/images/logo-purple.png" alt="logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- HEADER WHITE LOGO -->
|
||||
<div class="desktoplogo">
|
||||
<a href="#hero-7" class="logo-white"><img src="/chiefsoft/images/logo-purple-white.png" alt="logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- MAIN MENU -->
|
||||
<nav class="wsmenu clearfix">
|
||||
<ul class="wsmenu-list nav-theme">
|
||||
|
||||
|
||||
<!-- DROPDOWN SUB MENU -->
|
||||
<li aria-haspopup="true"><a href="#" class="h-link">About <span class="wsarrow"></span></a>
|
||||
<ul class="sub-menu">
|
||||
<li aria-haspopup="true"><a href="#lnk-1">Why Martex?</a></li>
|
||||
<li aria-haspopup="true"><a href="#features-2">Best Solutions</a></li>
|
||||
<li aria-haspopup="true"><a href="#lnk-2">Integrations</a></li>
|
||||
<li aria-haspopup="true"><a href="#lnk-3">How It Works</a></li>
|
||||
<li aria-haspopup="true"><a href="#reviews-2">Testimonials</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
||||
<!-- SIMPLE NAVIGATION LINK -->
|
||||
<li class="nl-simple" aria-haspopup="true"><a href="#features-13" class="h-link">Features</a></li>
|
||||
|
||||
|
||||
<!-- MEGAMENU -->
|
||||
<li aria-haspopup="true" class="mg_link"><a href="#" class="h-link">Pages <span class="wsarrow"></span></a>
|
||||
<div class="wsmegamenu w-75 clearfix">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
<!-- MEGAMENU LINKS -->
|
||||
<ul class="col-md-12 col-lg-3 link-list">
|
||||
<li class="fst-li"><a href="about.html">About Us</a></li>
|
||||
<li><a href="team.html">Our Team</a></li>
|
||||
<li><a href="careers.html">Careers <span class="sm-info">4</span></a></li>
|
||||
<li><a href="career-role.html">Career Details</a></li>
|
||||
<li><a href="contacts.html">Contact Us</a></li>
|
||||
</ul>
|
||||
|
||||
<!-- MEGAMENU LINKS -->
|
||||
<ul class="col-md-12 col-lg-3 link-list">
|
||||
<li><a href="features.html">Core Features</a></li>
|
||||
<li class="fst-li"><a href="projects.html">Our Projects</a></li>
|
||||
<li><a href="project-details.html">Project Details</a></li>
|
||||
<li><a href="reviews.html">Testimonials</a></li>
|
||||
<li><a href="download.html">Download Page</a></li>
|
||||
</ul>
|
||||
|
||||
<!-- MEGAMENU LINKS -->
|
||||
<ul class="col-md-12 col-lg-3 link-list">
|
||||
<li class="fst-li"><a href="pricing-1.html">Pricing Page #1</a></li>
|
||||
<li><a href="pricing-1.html">Pricing Page #2</a></li>
|
||||
<li><a href="faqs.html">FAQs Page</a></li>
|
||||
<li><a href="help-center.html">Help Center</a></li>
|
||||
<li><a href="404.html">404 Page</a></li>
|
||||
</ul>
|
||||
|
||||
<!-- MEGAMENU LINKS -->
|
||||
<ul class="col-md-12 col-lg-3 link-list">
|
||||
<li class="fst-li"><a href="blog-listing.html">Blog Listing</a></li>
|
||||
<li><a href="single-post.html">Single Blog Post</a></li>
|
||||
<li><a href="login-2.html">Login Page</a></li>
|
||||
<li><a href="signup-2.html">Signup Page</a></li>
|
||||
<li><a href="reset-password.html">Reset Password</a></li>
|
||||
</ul>
|
||||
|
||||
</div> <!-- End row -->
|
||||
</div> <!-- End container -->
|
||||
</div> <!-- End wsmegamenu -->
|
||||
</li> <!-- END MEGAMENU -->
|
||||
|
||||
|
||||
<!-- SIMPLE NAVIGATION LINK -->
|
||||
<li class="nl-simple" aria-haspopup="true"><a href="pricing-1.html" class="h-link">Pricing</a></li>
|
||||
|
||||
|
||||
<!-- SIMPLE NAVIGATION LINK -->
|
||||
<li class="nl-simple" aria-haspopup="true"><a href="#faqs-3" class="h-link">FAQs</a></li>
|
||||
|
||||
|
||||
<!-- SIGN IN LINK -->
|
||||
<li class="nl-simple reg-fst-link mobile-last-link" aria-haspopup="true">
|
||||
<a href="login-2.html" class="h-link">Sign in</a>
|
||||
</li>
|
||||
|
||||
|
||||
<!-- SIGN UP BUTTON -->
|
||||
<li class="nl-simple" aria-haspopup="true">
|
||||
<a href="signup-2.html" class="btn r-04 btn--theme hover--theme last-link">Sign up</a>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav> <!-- END MAIN MENU -->
|
||||
|
||||
|
||||
</div>
|
||||
</div> <!-- END NAVIGATION MENU -->
|
||||
|
||||
|
||||
</div> <!-- End header-wrapper -->
|
||||
</header> <!-- END HEADER -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- HERO-7
|
||||
============================================= -->
|
||||
@@ -218,13 +15,7 @@
|
||||
<h2 class="s-54 w-700">Design, Development & Management of Enterprise Solutions</h2>
|
||||
|
||||
<!-- Text -->
|
||||
<p class="p-lg">Mauris donec ociis magnis sapien ipsum sagittis sapien tempor and volute
|
||||
gravida aliquet quaerat vitae
|
||||
</p>
|
||||
|
||||
<!-- Text -->
|
||||
<p class="p-sm btn-txt ico-15">
|
||||
<span class="flaticon-check"></span> No credit card needed, free 14-day trial
|
||||
<p class="p-lg">We are fully equipped to deliver first-class solution development services. We improve your business efficiency and security at every step.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
@@ -244,9 +35,6 @@
|
||||
</div> <!-- End hero-overlay -->
|
||||
</section> <!-- END HERO-7 -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- FEATURES-6
|
||||
============================================= -->
|
||||
<section id="features-6" class="pb-100 features-section division">
|
||||
@@ -270,9 +58,9 @@
|
||||
<span class="flaticon-graphics"></span>
|
||||
|
||||
<!-- Shape -->
|
||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
||||
</svg>
|
||||
<!-- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">-->
|
||||
<!-- <path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />-->
|
||||
<!-- </svg>-->
|
||||
|
||||
</div>
|
||||
</div> <!-- End Icon -->
|
||||
@@ -298,10 +86,10 @@
|
||||
<!-- Vector Icon -->
|
||||
<span class="flaticon-idea"></span>
|
||||
|
||||
<!-- Shape -->
|
||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
||||
</svg>
|
||||
<!-- <!-- Shape -->-->
|
||||
<!-- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">-->
|
||||
<!-- <path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />-->
|
||||
<!-- </svg>-->
|
||||
|
||||
</div>
|
||||
</div> <!-- End Icon -->
|
||||
@@ -327,10 +115,10 @@
|
||||
<!-- Vector Icon -->
|
||||
<span class="flaticon-graphic"></span>
|
||||
|
||||
<!-- Shape -->
|
||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
||||
</svg>
|
||||
<!-- <!-- Shape -->-->
|
||||
<!-- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">-->
|
||||
<!-- <path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />-->
|
||||
<!-- </svg>-->
|
||||
|
||||
</div>
|
||||
</div> <!-- End Icon -->
|
||||
@@ -356,10 +144,10 @@
|
||||
<!-- Vector Icon -->
|
||||
<span class="flaticon-search-engine-1"></span>
|
||||
|
||||
<!-- Shape -->
|
||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
||||
</svg>
|
||||
<!-- <!-- Shape -->-->
|
||||
<!-- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">-->
|
||||
<!-- <path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />-->
|
||||
<!-- </svg>-->
|
||||
|
||||
</div>
|
||||
</div> <!-- End Icon -->
|
||||
@@ -403,9 +191,9 @@
|
||||
<span class="flaticon-graphics"></span>
|
||||
|
||||
<!-- Shape -->
|
||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
||||
</svg>
|
||||
<!-- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">-->
|
||||
<!-- <path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />-->
|
||||
<!-- </svg>-->
|
||||
|
||||
</div>
|
||||
</div> <!-- End Icon -->
|
||||
@@ -432,9 +220,9 @@
|
||||
<span class="flaticon-idea"></span>
|
||||
|
||||
<!-- Shape -->
|
||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
||||
</svg>
|
||||
<!-- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">-->
|
||||
<!-- <path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />-->
|
||||
<!-- </svg>-->
|
||||
|
||||
</div>
|
||||
</div> <!-- End Icon -->
|
||||
@@ -460,10 +248,10 @@
|
||||
<!-- Vector Icon -->
|
||||
<span class="flaticon-graphic"></span>
|
||||
|
||||
<!-- Shape -->
|
||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
||||
</svg>
|
||||
<!-- <!-- Shape -->-->
|
||||
<!-- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">-->
|
||||
<!-- <path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />-->
|
||||
<!-- </svg>-->
|
||||
|
||||
</div>
|
||||
</div> <!-- End Icon -->
|
||||
@@ -490,9 +278,9 @@
|
||||
<span class="flaticon-search-engine-1"></span>
|
||||
|
||||
<!-- Shape -->
|
||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
||||
</svg>
|
||||
<!-- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">-->
|
||||
<!-- <path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />-->
|
||||
<!-- </svg>-->
|
||||
|
||||
</div>
|
||||
</div> <!-- End Icon -->
|
||||
@@ -519,8 +307,6 @@
|
||||
<hr class="divider">
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- TEXT CONTENT
|
||||
============================================= -->
|
||||
<section id="lnk-1" class="pt-100 ct-02 content-section division">
|
||||
@@ -585,9 +371,6 @@
|
||||
</div> <!-- End container -->
|
||||
</section> <!-- END TEXT CONTENT -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- TEXT CONTENT
|
||||
============================================= -->
|
||||
<section class="pt-100 ct-04 content-section division">
|
||||
@@ -682,8 +465,6 @@
|
||||
</section> <!-- END TEXT CONTENT -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- FEATURES-2
|
||||
============================================= -->
|
||||
<section id="features-2" class="pt-90 features-section division">
|
||||
@@ -776,8 +557,6 @@
|
||||
</section> <!-- END FEATURES-2 -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- BOX CONTENT
|
||||
============================================= -->
|
||||
<section class="pt-100 ws-wrapper content-section">
|
||||
@@ -1288,346 +1067,14 @@
|
||||
</section> <!-- END BOX CONTENT -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- TESTIMONIALS-2
|
||||
============================================= -->
|
||||
<section id="reviews-2" class="pt-100 reviews-section">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<!-- SECTION TITLE -->
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-10 col-lg-9">
|
||||
<div class="section-title mb-70">
|
||||
|
||||
<!-- Title -->
|
||||
<h2 class="s-50 w-700">Our Happy Customers</h2>
|
||||
|
||||
<!-- Text -->
|
||||
<p class="s-21 color--grey">Ligula risus auctor tempus magna feugiat lacinia.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- TESTIMONIALS-2 WRAPPER -->
|
||||
<div class="reviews-2-wrapper rel shape--02 shape--whitesmoke">
|
||||
<div class="row align-items-center row-cols-1 row-cols-md-2">
|
||||
|
||||
|
||||
<!-- TESTIMONIAL #1 -->
|
||||
<div class="col">
|
||||
<div id="rw-2-1" class="review-2 bg--white-100 block-shadow r-08">
|
||||
|
||||
<!-- Quote Icon -->
|
||||
<div class="review-ico ico-65"><span class="flaticon-quote"></span></div>
|
||||
|
||||
<!-- Text -->
|
||||
<div class="review-txt">
|
||||
|
||||
<!-- Text -->
|
||||
<p>Quaerat sodales sapien euismod blandit aliquet ipsum primis undo and cubilia
|
||||
laoreet augue and luctus magna dolor luctus egestas sapien vitae
|
||||
</p>
|
||||
|
||||
<!-- Author -->
|
||||
<div class="author-data clearfix">
|
||||
|
||||
<!-- Avatar -->
|
||||
<div class="review-avatar">
|
||||
<img src="/chiefsoft/images/review-author-1.jpg" alt="review-avatar">
|
||||
</div>
|
||||
|
||||
<!-- Data -->
|
||||
<div class="review-author">
|
||||
<h6 class="s-18 w-700">Scott Boxer</h6>
|
||||
<p class="p-sm">@scott_boxer</p>
|
||||
</div>
|
||||
|
||||
</div> <!-- End Author -->
|
||||
|
||||
</div> <!-- End Text -->
|
||||
|
||||
</div>
|
||||
</div> <!-- END TESTIMONIAL #1 -->
|
||||
|
||||
|
||||
<!-- TESTIMONIAL #2 -->
|
||||
<div class="col">
|
||||
<div id="rw-2-2" class="review-2 bg--white-100 block-shadow r-08">
|
||||
|
||||
<!-- Quote Icon -->
|
||||
<div class="review-ico ico-65"><span class="flaticon-quote"></span></div>
|
||||
|
||||
<!-- Text -->
|
||||
<div class="review-txt">
|
||||
|
||||
<!-- Text -->
|
||||
<p>At sagittis congue augue and magna ipsum vitae a purus ipsum primis diam a
|
||||
cubilia laoreet augue egestas luctus a donec vitae ultrice ligula magna suscipit
|
||||
lectus gestas augue into cubilia
|
||||
</p>
|
||||
|
||||
<!-- Author -->
|
||||
<div class="author-data clearfix">
|
||||
|
||||
<!-- Avatar -->
|
||||
<div class="review-avatar">
|
||||
<img src="/chiefsoft/images/review-author-2.jpg" alt="review-avatar">
|
||||
</div>
|
||||
|
||||
<!-- Data -->
|
||||
<div class="review-author">
|
||||
<h6 class="s-18 w-700">Joel Peterson</h6>
|
||||
<p class="p-sm">Internet Surfer</p>
|
||||
</div>
|
||||
|
||||
</div> <!-- End Author -->
|
||||
|
||||
</div> <!-- End Text -->
|
||||
|
||||
</div>
|
||||
</div> <!-- END TESTIMONIAL #2 -->
|
||||
|
||||
|
||||
<!-- TESTIMONIAL #3 -->
|
||||
<div class="col">
|
||||
<div id="rw-2-3" class="review-2 bg--white-100 block-shadow r-08">
|
||||
|
||||
<!-- Quote Icon -->
|
||||
<div class="review-ico ico-65"><span class="flaticon-quote"></span></div>
|
||||
|
||||
<!-- Text -->
|
||||
<div class="review-txt">
|
||||
|
||||
<!-- Text -->
|
||||
<p>An augue cubilia laoreet magna suscipit egestas and ipsum a lectus purus ipsum
|
||||
primis and augue ultrice ligula and egestas a suscipit lectus gestas undo auctor
|
||||
tempus feugiat impedit quaerat
|
||||
</p>
|
||||
|
||||
<!-- Author -->
|
||||
<div class="author-data clearfix">
|
||||
|
||||
<!-- Avatar -->
|
||||
<div class="review-avatar">
|
||||
<img src="/chiefsoft/images/review-author-5.jpg" alt="review-avatar">
|
||||
</div>
|
||||
|
||||
<!-- Data -->
|
||||
<div class="review-author">
|
||||
<h6 class="s-18 w-700">Jennifer Harper</h6>
|
||||
<p class="p-sm">App Developer</p>
|
||||
</div>
|
||||
|
||||
</div> <!-- End Author -->
|
||||
|
||||
</div> <!-- End Text -->
|
||||
|
||||
</div>
|
||||
</div> <!-- END TESTIMONIAL #3 -->
|
||||
|
||||
|
||||
<!-- TESTIMONIAL #4 -->
|
||||
<div class="col">
|
||||
<div id="rw-2-4" class="review-2 bg--white-100 block-shadow r-08">
|
||||
|
||||
<!-- Quote Icon -->
|
||||
<div class="review-ico ico-65"><span class="flaticon-quote"></span></div>
|
||||
|
||||
<!-- Text -->
|
||||
<div class="review-txt">
|
||||
|
||||
<!-- Text -->
|
||||
<p>Augue at vitae purus tempus egestas volutpat augue undo cubilia laoreet magna
|
||||
suscipit luctus dolor blandit at purus tempus feugiat impedit
|
||||
</p>
|
||||
|
||||
<!-- Author -->
|
||||
<div class="author-data clearfix">
|
||||
|
||||
<!-- Avatar -->
|
||||
<div class="review-avatar">
|
||||
<img src="/chiefsoft/images/review-author-8.jpg" alt="review-avatar">
|
||||
</div>
|
||||
|
||||
<!-- Data -->
|
||||
<div class="review-author">
|
||||
<h6 class="s-18 w-700">Evelyn Martinez</h6>
|
||||
<p class="p-sm">WordPress Consultant</p>
|
||||
</div>
|
||||
|
||||
</div> <!-- End Author -->
|
||||
|
||||
</div> <!-- End Text -->
|
||||
|
||||
</div>
|
||||
</div> <!-- END TESTIMONIAL #4 -->
|
||||
|
||||
|
||||
</div> <!-- End row -->
|
||||
</div> <!-- END TESTIMONIALS-2 WRAPPER -->
|
||||
|
||||
|
||||
</div> <!-- End container -->
|
||||
</section> <!-- END TESTIMONIALS-2 -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- BRANDS-1
|
||||
============================================= -->
|
||||
<div id="brands-1" class="py-100 brands-section">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<!-- BRANDS TITLE -->
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-10 col-lg-9">
|
||||
<div class="brands-title mb-50">
|
||||
<h5 class="s-20 w-700">Trusted and used by over 3,400 companies</h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRANDS CAROUSEL -->
|
||||
<div class="row">
|
||||
<div class="col text-center">
|
||||
<div class="owl-carousel brands-carousel-6">
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-1.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-2.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-3.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-4.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-5.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-6.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-7.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-8.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-9.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- END BRANDS CAROUSEL -->
|
||||
|
||||
|
||||
</div> <!-- End container -->
|
||||
</div> <!-- END BRANDS-1 -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- DIVIDER LINE -->
|
||||
<?php include('homeparts/testimonial.php'); ?>
|
||||
<?php include ('homeparts/brands.php'); ?>
|
||||
<hr class="divider">
|
||||
<?php include('homeparts/imagepart.php'); ?>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- IMAGE CONTENT
|
||||
============================================= -->
|
||||
<section class="pt-100 ct-08 content-section division">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<!-- SECTION TITLE -->
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-10 col-lg-9">
|
||||
<div class="section-title mb-70">
|
||||
|
||||
<!-- Title -->
|
||||
<h2 class="s-50 w-700">Discover insights across all your data with Martex</h2>
|
||||
|
||||
<!-- Text -->
|
||||
<p class="s-21">Ligula risus auctor tempus magna feugiat lacinia.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- IMAGE BLOCK -->
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="img-block wow fadeInUp">
|
||||
<img class="img-fluid" src="/chiefsoft/images/img-19.png" alt="video-preview">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- ACTION BUTTON -->
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="img-block-btn text-center wow fadeInUp">
|
||||
|
||||
<!-- Button -->
|
||||
<a href="#integrations-2" class="btn r-04 btn--tra-black hover--theme">Monitor your activity</a>
|
||||
|
||||
<!-- Advantages List -->
|
||||
<ul class="advantages ico-15 clearfix">
|
||||
<li><p>Free 14 days trial</p></li>
|
||||
<li class="advantages-links-divider"><p><span class="flaticon-minus"></span></p></li>
|
||||
<li><p>Exclusive Support</p></li>
|
||||
<li class="advantages-links-divider"><p><span class="flaticon-minus"></span></p></li>
|
||||
<li><p>No Fees</p></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div> <!-- End container -->
|
||||
</section> <!-- END IMAGE CONTENT -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- TEXT CONTENT
|
||||
@@ -1842,241 +1289,9 @@
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- BANNER-7
|
||||
============================================= -->
|
||||
<section id="banner-7" class="banner-section">
|
||||
<div class="banner-overlay py-100">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<!-- BANNER-7 WRAPPER -->
|
||||
<div class="banner-7-wrapper">
|
||||
<div class="row justify-content-center">
|
||||
|
||||
|
||||
<!-- BANNER-7 TEXT -->
|
||||
<div class="col-md-8">
|
||||
<div class="banner-7-txt text-center">
|
||||
|
||||
<!-- Title -->
|
||||
<h2 class="s-48 w-700">Grow your business with integrated marketing tools</h2>
|
||||
|
||||
<!-- Buttons -->
|
||||
<div class="btns-group">
|
||||
<a href="#hero-7" class="btn r-04 btn--theme hover--theme">Get srarted - it's free
|
||||
</a>
|
||||
<a href="pricing-1.html" class="btn r-04 btn--tra-black hover--theme">Discover pricing</a>
|
||||
</div>
|
||||
|
||||
<!-- Button Text -->
|
||||
<p class="btn-txt ico-15">Free for 14 days - no credit card required.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div> <!-- End row -->
|
||||
</div> <!-- END BANNER-7 WRAPPER -->
|
||||
|
||||
|
||||
</div> <!-- End container -->
|
||||
</div> <!-- End banner overlay -->
|
||||
</section> <!-- END BANNER-7 -->
|
||||
|
||||
<?php include('homeparts/grow.php'); ?>
|
||||
|
||||
|
||||
|
||||
<!-- DIVIDER LINE -->
|
||||
<hr class="divider">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- FOOTER-3
|
||||
============================================= -->
|
||||
<footer id="footer-3" class="pt-100 footer">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<!-- FOOTER CONTENT -->
|
||||
<div class="row">
|
||||
|
||||
|
||||
<!-- FOOTER LOGO -->
|
||||
<div class="col-xl-3">
|
||||
<div class="footer-info">
|
||||
<img class="footer-logo" src="/chiefsoft/images/logo-purple.png" alt="footer-logo">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- FOOTER LINKS -->
|
||||
<div class="col-sm-4 col-md-3 col-xl-2">
|
||||
<div class="footer-links fl-1">
|
||||
|
||||
<!-- Title -->
|
||||
<h6 class="s-17 w-700">Company</h6>
|
||||
|
||||
<!-- Links -->
|
||||
<ul class="foo-links clearfix">
|
||||
<li><p><a href="about.html">About Us</a></p></li>
|
||||
<li><p><a href="careers.html">Careers</a></p></li>
|
||||
<li><p><a href="blog-listing.html">Our Blog</a></p></li>
|
||||
<li><p><a href="contacts.html">Contact Us</a></p></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div> <!-- END FOOTER LINKS -->
|
||||
|
||||
|
||||
<!-- FOOTER LINKS -->
|
||||
<div class="col-sm-4 col-md-3 col-xl-2">
|
||||
<div class="footer-links fl-2">
|
||||
|
||||
<!-- Title -->
|
||||
<h6 class="s-17 w-700">Product</h6>
|
||||
|
||||
<!-- Links -->
|
||||
<ul class="foo-links clearfix">
|
||||
<li><p><a href="features.html">Integration</a></p></li>
|
||||
<li><p><a href="reviews.html">Customers</a></p></li>
|
||||
<li><p><a href="pricing-1.html">Pricing</a></p></li>
|
||||
<li><p><a href="help-center.html">Help Center</a></p></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div> <!-- END FOOTER LINKS -->
|
||||
|
||||
|
||||
<!-- FOOTER LINKS -->
|
||||
<div class="col-sm-4 col-md-3 col-xl-2">
|
||||
<div class="footer-links fl-3">
|
||||
|
||||
<!-- Title -->
|
||||
<h6 class="s-17 w-700">Legal</h6>
|
||||
|
||||
<!-- Links -->
|
||||
<ul class="foo-links clearfix">
|
||||
<li><p><a href="terms.html">Terms of Use</a></p></li>
|
||||
<li><p><a href="privacy.html">Privacy Policy</a></p></li>
|
||||
<li><p><a href="cookies.html">Cookie Policy</a></p></li>
|
||||
<li><p><a href="#">Site Map</a></p></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div> <!-- END FOOTER LINKS -->
|
||||
|
||||
|
||||
<!-- FOOTER LINKS -->
|
||||
<div class="col-sm-6 col-md-3">
|
||||
<div class="footer-links fl-4">
|
||||
|
||||
<!-- Title -->
|
||||
<h6 class="s-17 w-700">Connect With Us</h6>
|
||||
|
||||
<!-- Mail Link -->
|
||||
<p class="footer-mail-link ico-25">
|
||||
<a href="mailto:yourdomain@mail.com">hello@yourdomain.com</a>
|
||||
</p>
|
||||
|
||||
<!-- Social Links -->
|
||||
<ul class="footer-socials ico-25 text-center clearfix">
|
||||
<li><a href="https://www.facebook.com/chiefsoft/"><span class="flaticon-facebook"></span></a></li>
|
||||
<li><a href="https://twitter.com/chiefsoft"><span class="flaticon-twitter"></span></a></li>
|
||||
<li><a href="https://www.f6s.com/member/olusesanameye"><span class="flaticon-github"></span></a></li>
|
||||
<li><a href="https://dribbble.com/chiefsoft"><span class="flaticon-dribbble"></span></a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div> <!-- END FOOTER LINKS -->
|
||||
|
||||
|
||||
</div> <!-- END FOOTER CONTENT -->
|
||||
|
||||
|
||||
<hr> <!-- FOOTER DIVIDER LINE -->
|
||||
|
||||
|
||||
<!-- BOTTOM FOOTER -->
|
||||
<div class="bottom-footer">
|
||||
<div class="row row-cols-1 row-cols-md-2 d-flex align-items-center">
|
||||
|
||||
|
||||
<!-- FOOTER COPYRIGHT -->
|
||||
<div class="col">
|
||||
<div class="footer-copyright"><p class="p-sm">© <?=date("Y");?> ChiefSoft Works. <span>All Rights Reserved</span></p></div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- FOOTER SECONDARY LINK -->
|
||||
<div class="col">
|
||||
<div class="bottom-secondary-link ico-15 text-end">
|
||||
<p class="p-sm">
|
||||
<!-- gg-->
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div> <!-- End row -->
|
||||
</div> <!-- END BOTTOM FOOTER -->
|
||||
|
||||
|
||||
</div> <!-- End container -->
|
||||
</footer> <!-- END FOOTER-3 -->
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- END PAGE CONTENT -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- EXTERNAL SCRIPTS
|
||||
============================================= -->
|
||||
<script src="/chiefsoft/js/jquery-3.7.0.min.js"></script>
|
||||
<script src="/chiefsoft/js/bootstrap.min.js"></script>
|
||||
<script src="/chiefsoft/js/modernizr.custom.js"></script>
|
||||
<script src="/chiefsoft/js/jquery.easing.js"></script>
|
||||
<script src="/chiefsoft/js/jquery.appear.js"></script>
|
||||
<script src="/chiefsoft/js/menu.js"></script>
|
||||
<script src="/chiefsoft/js/owl.carousel.min.js"></script>
|
||||
<script src="/chiefsoft/js/pricing-toggle.js"></script>
|
||||
<script src="/chiefsoft/js/jquery.magnific-popup.min.js"></script>
|
||||
<script src="/chiefsoft/js/quick-form.js"></script>
|
||||
<script src="/chiefsoft/js/jquery.validate.min.js"></script>
|
||||
<script src="/chiefsoft/js/jquery.ajaxchimp.min.js"></script>
|
||||
<script src="/chiefsoft/js/popper.min.js"></script>
|
||||
<script src="/chiefsoft/js/lunar.js"></script>
|
||||
<script src="/chiefsoft/js/wow.js"></script>
|
||||
|
||||
<!-- Custom Script -->
|
||||
<script src="/chiefsoft/js/custom.js"></script>
|
||||
|
||||
|
||||
<!-- Google Analytics: Change UA-XXXXX-X to be your site's ID. Go to http://www.google.com/analytics/ for more information. -->
|
||||
<!--
|
||||
<script>
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,85 @@
|
||||
<!-- BRANDS-1
|
||||
============================================= -->
|
||||
<div id="brands-1" class="py-100 brands-section">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<!-- BRANDS TITLE -->
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-10 col-lg-9">
|
||||
<div class="brands-title mb-50">
|
||||
<h5 class="s-20 w-700">Trusted and used by over 3,400 companies</h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRANDS CAROUSEL -->
|
||||
<div class="row">
|
||||
<div class="col text-center">
|
||||
<div class="owl-carousel brands-carousel-6">
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-1.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-2.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-3.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-4.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-5.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-6.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-7.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-8.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BRAND LOGO IMAGE -->
|
||||
<div class="brand-logo">
|
||||
<a href="#"><img class="img-fluid" src="/chiefsoft/images/brand-9.png" alt="brand-logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- END BRANDS CAROUSEL -->
|
||||
|
||||
|
||||
</div> <!-- End container -->
|
||||
</div> <!-- END BRANDS-1 -->
|
||||
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
<!-- BANNER-7
|
||||
============================================= -->
|
||||
<section id="banner-7" class="banner-section">
|
||||
<div class="banner-overlay py-100">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<!-- BANNER-7 WRAPPER -->
|
||||
<div class="banner-7-wrapper">
|
||||
<div class="row justify-content-center">
|
||||
|
||||
|
||||
<!-- BANNER-7 TEXT -->
|
||||
<div class="col-md-8">
|
||||
<div class="banner-7-txt text-center">
|
||||
|
||||
<!-- Title -->
|
||||
<h2 class="s-48 w-700">Grow your business with integrated marketing tools</h2>
|
||||
|
||||
<!-- Buttons -->
|
||||
<div class="btns-group">
|
||||
<a href="#hero-7" class="btn r-04 btn--theme hover--theme">Get srarted - it's free
|
||||
</a>
|
||||
<a href="pricing-1.html" class="btn r-04 btn--tra-black hover--theme">Discover pricing</a>
|
||||
</div>
|
||||
|
||||
<!-- Button Text -->
|
||||
<p class="btn-txt ico-15">Free for 14 days - no credit card required.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div> <!-- End row -->
|
||||
</div> <!-- END BANNER-7 WRAPPER -->
|
||||
|
||||
|
||||
</div> <!-- End container -->
|
||||
</div> <!-- End banner overlay -->
|
||||
</section> <!-- END BANNER-7 -->
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
<!-- IMAGE CONTENT
|
||||
============================================= -->
|
||||
<section class="pt-100 ct-08 content-section division">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<!-- SECTION TITLE -->
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-10 col-lg-9">
|
||||
<div class="section-title mb-70">
|
||||
|
||||
<!-- Title -->
|
||||
<h2 class="s-50 w-700">Discover insights across all your data with Martex</h2>
|
||||
|
||||
<!-- Text -->
|
||||
<p class="s-21">Ligula risus auctor tempus magna feugiat lacinia.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- IMAGE BLOCK -->
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="img-block wow fadeInUp">
|
||||
<img class="img-fluid" src="/chiefsoft/images/img-19.png" alt="video-preview">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- ACTION BUTTON -->
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="img-block-btn text-center wow fadeInUp">
|
||||
|
||||
<!-- Button -->
|
||||
<a href="#integrations-2" class="btn r-04 btn--tra-black hover--theme">Monitor your activity</a>
|
||||
|
||||
<!-- Advantages List -->
|
||||
<ul class="advantages ico-15 clearfix">
|
||||
<li><p>Free 14 days trial</p></li>
|
||||
<li class="advantages-links-divider"><p><span class="flaticon-minus"></span></p></li>
|
||||
<li><p>Exclusive Support</p></li>
|
||||
<li class="advantages-links-divider"><p><span class="flaticon-minus"></span></p></li>
|
||||
<li><p>No Fees</p></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div> <!-- End container -->
|
||||
</section> <!-- END IMAGE CONTENT -->
|
||||
|
||||
@@ -0,0 +1,184 @@
|
||||
<!-- TESTIMONIALS-2
|
||||
============================================= -->
|
||||
<section id="reviews-2" class="pt-100 reviews-section">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<!-- SECTION TITLE -->
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-10 col-lg-9">
|
||||
<div class="section-title mb-70">
|
||||
|
||||
<!-- Title -->
|
||||
<h2 class="s-50 w-700">Our Happy Customers</h2>
|
||||
|
||||
<!-- Text -->
|
||||
<p class="s-21 color--grey">Ligula risus auctor tempus magna feugiat lacinia.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- TESTIMONIALS-2 WRAPPER -->
|
||||
<div class="reviews-2-wrapper rel shape--02 shape--whitesmoke">
|
||||
<div class="row align-items-center row-cols-1 row-cols-md-2">
|
||||
|
||||
|
||||
<!-- TESTIMONIAL #1 -->
|
||||
<div class="col">
|
||||
<div id="rw-2-1" class="review-2 bg--white-100 block-shadow r-08">
|
||||
|
||||
<!-- Quote Icon -->
|
||||
<div class="review-ico ico-65"><span class="flaticon-quote"></span></div>
|
||||
|
||||
<!-- Text -->
|
||||
<div class="review-txt">
|
||||
|
||||
<!-- Text -->
|
||||
<p>Quaerat sodales sapien euismod blandit aliquet ipsum primis undo and cubilia
|
||||
laoreet augue and luctus magna dolor luctus egestas sapien vitae
|
||||
</p>
|
||||
|
||||
<!-- Author -->
|
||||
<div class="author-data clearfix">
|
||||
|
||||
<!-- Avatar -->
|
||||
<div class="review-avatar">
|
||||
<img src="/chiefsoft/images/review-author-1.jpg" alt="review-avatar">
|
||||
</div>
|
||||
|
||||
<!-- Data -->
|
||||
<div class="review-author">
|
||||
<h6 class="s-18 w-700">Scott Boxer</h6>
|
||||
<p class="p-sm">@scott_boxer</p>
|
||||
</div>
|
||||
|
||||
</div> <!-- End Author -->
|
||||
|
||||
</div> <!-- End Text -->
|
||||
|
||||
</div>
|
||||
</div> <!-- END TESTIMONIAL #1 -->
|
||||
|
||||
|
||||
<!-- TESTIMONIAL #2 -->
|
||||
<div class="col">
|
||||
<div id="rw-2-2" class="review-2 bg--white-100 block-shadow r-08">
|
||||
|
||||
<!-- Quote Icon -->
|
||||
<div class="review-ico ico-65"><span class="flaticon-quote"></span></div>
|
||||
|
||||
<!-- Text -->
|
||||
<div class="review-txt">
|
||||
|
||||
<!-- Text -->
|
||||
<p>At sagittis congue augue and magna ipsum vitae a purus ipsum primis diam a
|
||||
cubilia laoreet augue egestas luctus a donec vitae ultrice ligula magna suscipit
|
||||
lectus gestas augue into cubilia
|
||||
</p>
|
||||
|
||||
<!-- Author -->
|
||||
<div class="author-data clearfix">
|
||||
|
||||
<!-- Avatar -->
|
||||
<div class="review-avatar">
|
||||
<img src="/chiefsoft/images/review-author-2.jpg" alt="review-avatar">
|
||||
</div>
|
||||
|
||||
<!-- Data -->
|
||||
<div class="review-author">
|
||||
<h6 class="s-18 w-700">Joel Peterson</h6>
|
||||
<p class="p-sm">Internet Surfer</p>
|
||||
</div>
|
||||
|
||||
</div> <!-- End Author -->
|
||||
|
||||
</div> <!-- End Text -->
|
||||
|
||||
</div>
|
||||
</div> <!-- END TESTIMONIAL #2 -->
|
||||
|
||||
|
||||
<!-- TESTIMONIAL #3 -->
|
||||
<div class="col">
|
||||
<div id="rw-2-3" class="review-2 bg--white-100 block-shadow r-08">
|
||||
|
||||
<!-- Quote Icon -->
|
||||
<div class="review-ico ico-65"><span class="flaticon-quote"></span></div>
|
||||
|
||||
<!-- Text -->
|
||||
<div class="review-txt">
|
||||
|
||||
<!-- Text -->
|
||||
<p>An augue cubilia laoreet magna suscipit egestas and ipsum a lectus purus ipsum
|
||||
primis and augue ultrice ligula and egestas a suscipit lectus gestas undo auctor
|
||||
tempus feugiat impedit quaerat
|
||||
</p>
|
||||
|
||||
<!-- Author -->
|
||||
<div class="author-data clearfix">
|
||||
|
||||
<!-- Avatar -->
|
||||
<div class="review-avatar">
|
||||
<img src="/chiefsoft/images/review-author-5.jpg" alt="review-avatar">
|
||||
</div>
|
||||
|
||||
<!-- Data -->
|
||||
<div class="review-author">
|
||||
<h6 class="s-18 w-700">Jennifer Harper</h6>
|
||||
<p class="p-sm">App Developer</p>
|
||||
</div>
|
||||
|
||||
</div> <!-- End Author -->
|
||||
|
||||
</div> <!-- End Text -->
|
||||
|
||||
</div>
|
||||
</div> <!-- END TESTIMONIAL #3 -->
|
||||
|
||||
|
||||
<!-- TESTIMONIAL #4 -->
|
||||
<div class="col">
|
||||
<div id="rw-2-4" class="review-2 bg--white-100 block-shadow r-08">
|
||||
|
||||
<!-- Quote Icon -->
|
||||
<div class="review-ico ico-65"><span class="flaticon-quote"></span></div>
|
||||
|
||||
<!-- Text -->
|
||||
<div class="review-txt">
|
||||
|
||||
<!-- Text -->
|
||||
<p>Augue at vitae purus tempus egestas volutpat augue undo cubilia laoreet magna
|
||||
suscipit luctus dolor blandit at purus tempus feugiat impedit
|
||||
</p>
|
||||
|
||||
<!-- Author -->
|
||||
<div class="author-data clearfix">
|
||||
|
||||
<!-- Avatar -->
|
||||
<div class="review-avatar">
|
||||
<img src="/chiefsoft/images/review-author-8.jpg" alt="review-avatar">
|
||||
</div>
|
||||
|
||||
<!-- Data -->
|
||||
<div class="review-author">
|
||||
<h6 class="s-18 w-700">Evelyn Martinez</h6>
|
||||
<p class="p-sm">WordPress Consultant</p>
|
||||
</div>
|
||||
|
||||
</div> <!-- End Author -->
|
||||
|
||||
</div> <!-- End Text -->
|
||||
|
||||
</div>
|
||||
</div> <!-- END TESTIMONIAL #4 -->
|
||||
|
||||
|
||||
</div> <!-- End row -->
|
||||
</div> <!-- END TESTIMONIALS-2 WRAPPER -->
|
||||
|
||||
|
||||
</div> <!-- End container -->
|
||||
</section> <!-- END TESTIMONIALS-2 -->
|
||||
|
||||
@@ -19,18 +19,22 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
$blog_image = "https://blog.chiefsoft.com/wp-content/uploads/".$blog_featured['meta_value'];
|
||||
?>
|
||||
<div class="section mcb-section mcb-section-lsgo36z5s" style="padding-top:110px;padding-bottom:70px;background-image:url(/assets/images/insurance3-sectionbg3.png);background-repeat:repeat-x;background-position:center top;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-lr1bo58h7 one-second valign-middle clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-69sgk7sg1 one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid aligncenter no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" src="/assets/images/insurance3-articles-pic1.png">
|
||||
<div class="image_wrapper"><img style="border-radius: 50%" class="scale-with-grid" src="<?=$blog_image?>">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wrap mcb-wrap mcb-wrap-1mhmri34p one-second valign-middle clearfix" style="padding:0 0 0 5%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-2ph3gb2bh one column_column column-margin-30px">
|
||||
@@ -92,6 +96,10 @@
|
||||
$blog_id = $blgr["id"];
|
||||
$comment_count = $blgr["comment_count"];
|
||||
$meta_value = $blgr["meta_value"];
|
||||
|
||||
$date=date_create($post_date);
|
||||
$post_date = date_format($date,"Y/m/d");
|
||||
|
||||
include("blog_unit.php");
|
||||
}
|
||||
?>
|
||||
|
||||
@@ -9,7 +9,7 @@ $blog_image = "https://blog.chiefsoft.com/wp-content/uploads/".$meta_value; //20
|
||||
<div class="image_frame post-photo-wrapper scale-with-grid image">
|
||||
<div class="image_wrapper">
|
||||
<a href="<?php echo $blog_link;?>">
|
||||
<div class="mask"></div><img src="<?php echo $blog_image;?>" class="scale-with-grid wp-post-image" alt></a>
|
||||
<div class="mask"></div><img style="border-radius: 10px; background-color: whitesmoke;" src="<?php echo $blog_image;?>" class="scale-with-grid wp-post-image" alt></a>
|
||||
<div class="image_links double">
|
||||
<a href="<?php echo $blog_link;?>" class="zoom" rel="prettyphoto"><i class="icon-search"></i></a><a href="<?php echo $blog_link;?>" class="link"><i class="icon-link"></i></a>
|
||||
</div>
|
||||
@@ -31,9 +31,9 @@ $blog_image = "https://blog.chiefsoft.com/wp-content/uploads/".$meta_value; //20
|
||||
<?php echo $content; ?>
|
||||
</div>
|
||||
<div class="post-footer">
|
||||
<div class="button-love">
|
||||
<span class="love-text">Do you like it?</span><a href="#" class="mfn-love " data-id="56"><span class="icons-wrapper"><i class="icon-heart-empty-fa"></i><i class="icon-heart-fa"></i></span><span class="label"><?php echo $comment_count;?></span></a>
|
||||
</div>
|
||||
<!-- <div class="button-love">-->
|
||||
<!-- <span class="love-text">Do you like it?</span><a href="#" class="mfn-love " data-id="56"><span class="icons-wrapper"><i class="icon-heart-empty-fa"></i><i class="icon-heart-fa"></i></span><span class="label">--><?php //echo $comment_count;?><!--</span></a>-->
|
||||
<!-- </div>-->
|
||||
<div class="post-links">
|
||||
<i class="icon-doc-text"></i><a href="<?php echo $blog_link;?>" class="post-more">Read more</a>
|
||||
</div>
|
||||
|
||||
@@ -18,5 +18,10 @@ services:
|
||||
- ./apache_log:/var/log/apache2
|
||||
ports:
|
||||
- 7071:80
|
||||
extra_hosts:
|
||||
- blogdata.chiefsoft.net:10.10.33.15
|
||||
- sitedata.chiefsoft.net:10.10.33.15
|
||||
- oameye.works.wrenchboard.com:10.20.30.27
|
||||
- oameye.work.wrenchboard.com:10.10.33.15
|
||||
volumes:
|
||||
src:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 89 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.4 KiB |
Reference in New Issue
Block a user