Inital Commit
This commit is contained in:
@ -0,0 +1,42 @@
|
||||
@include('client.sunsarioverseas.partials.header')
|
||||
@include('client.sunsarioverseas.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>{{$article->title}}</h1>
|
||||
</div>
|
||||
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Pages</li>
|
||||
<li class="current">{{$article->title}}</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<!-- ABOUT START -->
|
||||
<div class="container mt-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="about-us-left">
|
||||
<h5 class="overheadline">{{$article->title}}</h5>
|
||||
<p> {!!processForShortcode($article->text)!!}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 spacing-lg">
|
||||
<figure class="about-right-feauture">
|
||||
<img src="{{site_url($article->cover_photo)}}" alt="">
|
||||
</figure>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ABOUT END -->
|
||||
@include('client.sunsarioverseas.partials.footer')
|
@ -0,0 +1,75 @@
|
||||
@include('client.sunsarioverseas.partials.header')
|
||||
@include('client.sunsarioverseas.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Mission & Visions</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>About us</li>
|
||||
<li class="current">Mission & Vision</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<!-- WIDE SECTION END -->
|
||||
<div class="tp-wide-section-about mt-5 mb-5">
|
||||
<div class="row g-0">
|
||||
<div class="col-lg-5 col-xl-6">
|
||||
<div class="tp-ws-left">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-7 col-xl-6">
|
||||
<div class="tp-ws-right">
|
||||
<div class="tp-ws-right-content">
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="images/icons/levels.svg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>Mission</h4>
|
||||
<p>With more than 100 templates, it allows you to create almost any type of web
|
||||
pages.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="images/icons/document.svg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>Vision</h4>
|
||||
<p>Complete and clear documentation for an easy and fast installation.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="images/icons/support.svg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>Objectives</h4>
|
||||
<p>If you have any problems in the installation process, we are here to help you.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- WIDE SECTION START -->
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
@include('client.sunsarioverseas.partials.footer')
|
46
resources/views/client/sunsarioverseas/nav.blade.php
Normal file
46
resources/views/client/sunsarioverseas/nav.blade.php
Normal file
@ -0,0 +1,46 @@
|
||||
<div class="main-nav">
|
||||
<div class="container">
|
||||
<nav id="navigation1" class="navigation">
|
||||
<div class="nav-header">
|
||||
<a class="nav-logo" href="{{ site_url() }}">
|
||||
<img src="{{ site_url(SITEVARS->primary_logo) }}" class="white-logo" alt="">
|
||||
<img src="{{ site_url(SITEVARS->secondary_logo) }}" class="dark-logo" alt="">
|
||||
</a>
|
||||
<div class="nav-toggle"></div>
|
||||
</div>
|
||||
<div class="nav-menus-wrapper">
|
||||
<ul class="nav-menu align-to-right">
|
||||
|
||||
@php
|
||||
$menuItems = MPCMS::getMenuItems('header-menu');
|
||||
@endphp
|
||||
|
||||
@foreach ($menuItems as $menuItem)
|
||||
@php
|
||||
$menuItem->alias = str_replace('-', '_', $menuItem->alias);
|
||||
$routeName = $menuItem->alias;
|
||||
$routeUrl = route($routeName);
|
||||
@endphp
|
||||
<li>
|
||||
<a href="{{ $routeUrl }}" >{{ $menuItem->title }}</a>
|
||||
@if (!empty($menuItem->children))
|
||||
<ul class="nav-dropdown">
|
||||
@foreach ($menuItem->children as $menu)
|
||||
@php
|
||||
$menuRouteName = $menuItem->alias . '.' . $menu->alias;
|
||||
$menuRouteUrl = route($menuRouteName);
|
||||
@endphp
|
||||
<li><a href="{{ $menuRouteUrl }}">{{ $menu->title }}</a></li>
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</li>
|
||||
|
||||
@endforeach
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
123
resources/views/client/sunsarioverseas/partials/footer.blade.php
Normal file
123
resources/views/client/sunsarioverseas/partials/footer.blade.php
Normal file
@ -0,0 +1,123 @@
|
||||
|
||||
<!-- FOOTER START -->
|
||||
<footer>
|
||||
<div class="container mt-5">
|
||||
<div class="top-footer">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 col-xl-7">
|
||||
<h3>You give us your demand and stay relaxed. We match exactly qualified manpower needed for your business.</h3>
|
||||
|
||||
</div>
|
||||
<div class="col-lg-12 col-xl-5">
|
||||
<div class="footer-btn">
|
||||
<a class="tp-btn-primary" href="#" target="_blank" role="button">Join Us Now</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="footer-line">
|
||||
<div class="center-footer">
|
||||
<div class="row">
|
||||
<div class="col-lg-5">
|
||||
<div class="footer-col footer-left-col">
|
||||
<figure class="site-footer-logo">
|
||||
<img src="{{ site_url(SITEVARS->primary_logo) }}" alt="">
|
||||
</figure>
|
||||
<p>Let's develop your project with this impressive and powerful template that helps you
|
||||
create beautiful web pages. An original solution for any business.</p>
|
||||
<ul class="footer-social">
|
||||
<li><a href="{{SITEVARS->fb}}"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="{{SITEVARS->insta}}"><i class="fab fa-instagram"></i></a></li>
|
||||
<li><a href="{{SITEVARS->twitter}}"><i class="fab fa-twitter"></i></a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<div class="footer-col">
|
||||
<h5>Quick Links</h5>
|
||||
<div class="vstack gap-2">
|
||||
<?php $FooterMenu=MPCMS::getMenuItems('footer-menu-1'); ?>
|
||||
@foreach($FooterMenu as $MenuItem)
|
||||
<a href="{{route($MenuItem->alias)}}"><i></i>{{$MenuItem->title}}</a>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-3">
|
||||
<div class="footer-col">
|
||||
<h5>Get in Touch</h5>
|
||||
<ul class="footer-contact">
|
||||
<li class="phone"><a href="tel:123-456-7890">{{SITEVARS->phone}}</a></li>
|
||||
<li class="email"><a href="mailto:info@merit.com">{{SITEVARS->email}}</a></li>
|
||||
<li>
|
||||
<div class="d-flex">
|
||||
<div class="flex-shrink-0">
|
||||
<i class="fas fa-map-pin"></i>
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3">
|
||||
<p>Sunsari, Nepal</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="footer-line">
|
||||
<div class="bottom-footer">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="footer-copyright">
|
||||
<p>© 2023 <a
|
||||
href="#"
|
||||
target="_blank">{{SITEVARS->copyright_text}}</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<ul class="footer-terms">
|
||||
<li><a href="#">Terms</a></li>
|
||||
<li><a href="#">Privacy</a></li>
|
||||
<li><a href="#">Support</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- FOOTER END -->
|
||||
|
||||
<!-- SCROLL TOP -->
|
||||
<a href="#0" class="cd-top">Top</a>
|
||||
|
||||
<!-- TEMPLATE MAIN JAVASCRIPT FILES -->
|
||||
<script src="{!! template('js/lib/jquery-3.6.0.min.js')!!}"></script>
|
||||
<script src="{!! template('js/lib/bootstrap.min.js')!!}"></script>
|
||||
<script src="{!! template('js/lib/plugins.js')!!}"></script>
|
||||
<script src="{!! template('js/lib/megamenu.js')!!}"></script>
|
||||
<script src="{!! template('js/lib/navigation.js')!!}"></script>
|
||||
<script src="{!! template('js/lib/navigation.fixed.min.js')!!}"></script>
|
||||
<script src="{!! template('js/main.js')!!}"></script>
|
||||
|
||||
<!-- REVOLUTION JS FILES -->
|
||||
<script src="{!! template('revolution/js/jquery.themepunch.tools.min.js')!!}"></script>
|
||||
<script src="{!! template('revolution/js/jquery.themepunch.revolution.min.js')!!}"></script>
|
||||
|
||||
<!-- SLIDER REVOLUTION 5.0 EXTENSIONS (Load Extensions only on Local File Systems ! The following part can be removed on Server for On Demand Loading) -->
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.actions.min.js')!!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.carousel.min.js')!!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.kenburn.min.j')!!}s"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.layeranimation.min.js')!!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.migration.min.js')!!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.navigation.min.js')!!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.parallax.min.js')!!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.slideanims.min.js')!!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.video.min.js')!!}"></script>
|
||||
<script src="{!! template('js/rev-sliders/construction.js')!!}"></script>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
@ -0,0 +1,91 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US" class="no-js">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<!-- TITLE -->
|
||||
<title>Home - Sunsari Overseas PVt. Ltd.</title>
|
||||
|
||||
<!-- META TAGS -->
|
||||
<meta name="keywords"
|
||||
content="Sunsari HR, Sunsari, Sunsari Overseas, Nepal Recruitment, Nepal Recruit, nepali people, nepali workers, Nepal Manpower">
|
||||
<meta name="description" content="Sunsari Overseas">
|
||||
|
||||
<!-- FAVICON -->
|
||||
|
||||
|
||||
|
||||
<!-- REVOLUTION ADDONS -->
|
||||
<link href="http://fonts.googleapis.com/css?family=Roboto%3A700%2C300" rel="stylesheet" property="stylesheet"
|
||||
type="text/css" media="all" />
|
||||
<link rel="stylesheet" type="text/css" href="{!! template('revolution/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css')!!}">
|
||||
<link rel="stylesheet" type="text/css" href="{!! template('revolution/fonts/font-awesome/css/font-awesome.css')!!}">
|
||||
|
||||
<!-- REVOLUTION STYLE SHEETS -->
|
||||
<link rel="stylesheet" type="text/css" href="{!! template('revolution/css/settings.css')!!}">
|
||||
|
||||
<!-- REVOLUTION LAYERS STYLES -->
|
||||
<link rel="stylesheet" type="text/css" href="{!! template('revolution/css/layers.css')!!}">
|
||||
<link rel="stylesheet" href="{!! template('css/slider-revolution.css')!!}">
|
||||
|
||||
<!-- REVOLUTION NAVIGATION STYLES -->
|
||||
<link rel="stylesheet" type="text/css" href="{!! template('revolution/css/navigation.css')!!}">
|
||||
|
||||
<!-- MAIN CSS STYLE SHEET -->
|
||||
<link rel="stylesheet" href="{!! template('css/main.css')!!}">
|
||||
<link rel="stylesheet" href="{!! template('css/stylesheet.css')!!}">
|
||||
<link rel="stylesheet" href="{!! template('css/responsive.css')!!}">
|
||||
|
||||
<!-- PRAGYA CUSTOM CSS -->
|
||||
<link rel="stylesheet" href="{!! template('css/partials/niches/construction.css')!!}">
|
||||
|
||||
<!-- MODERNIZR LIBRARY -->
|
||||
<script src="{!! template('js/modernizr-custom.js')!!}"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
<!-- HEADER START -->
|
||||
<header>
|
||||
<!-- TOP HEADER START -->
|
||||
<div class="top-header">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<ul class="top-contact">
|
||||
<li class="phone"><span class="tel-no"><a href="tel:123-456-7890"> {{SITEVARS->phone}}</a></span>
|
||||
</li>
|
||||
<li class="email"><a href="mailto:info@sunsarioverseas.com">{{SITEVARS->email}}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="top-social">
|
||||
<ul class="social-list">
|
||||
<li><a href="{{SITEVARS->fb}}"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="{{SITEVARS->insta}}"><i class="fab fa-instagram"></i></a></li>
|
||||
<li><a href="{{SITEVARS->twitter}}"><i class="fab fa-twitter"></i></a></li>
|
||||
<li>
|
||||
<!-- Button trigger modal -->
|
||||
<div class="center-element">
|
||||
<button type="button" class="btn btn-default" data-toggle="modal"
|
||||
data-target="#exampleModal2">Mail Login</button>
|
||||
</div>
|
||||
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="top-line">
|
||||
</div>
|
||||
</div>
|
||||
<!-- TOP HEADER END -->
|
||||
|
||||
|
@ -0,0 +1,23 @@
|
||||
<!-- ABOUT START -->
|
||||
<div class="container mt-5">
|
||||
<div class="row">
|
||||
<div class="col-xl-5">
|
||||
@php $aboutus=MPCMS::getarticle('welcome') @endphp
|
||||
<figure class="tp-construction-portrait"><img src="{{$aboutus->cover_photo}}"
|
||||
alt="">
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-xl-7">
|
||||
<div class="tp-construction-about-content">
|
||||
<div class="tp-construction-headline">
|
||||
<h5>About Company</h5>
|
||||
<h2>{!!$aboutus->title!!}</h2>
|
||||
</div>
|
||||
<p> {!!substr($aboutus->text,0,1500)!!}</p>
|
||||
|
||||
<a class="tp-btn-primary" href="{{site_url('about/introduction')}}" role="button">Read More...</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ABOUT END -->
|
@ -0,0 +1,20 @@
|
||||
<div class="bg-wrapper mt-5 ">
|
||||
<div class="container">
|
||||
<div class="center-title">
|
||||
<h2>Collaborators & Clients</h2>
|
||||
<p>Our Partners</p>
|
||||
</div>
|
||||
<div class="row">
|
||||
@foreach(MPCMS::getcompanies() as $client)
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4">
|
||||
<figure class="client-logo">
|
||||
<img src="{{$client->logo }}" alt="">
|
||||
</figure>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-5 text-center">
|
||||
<p><a class="tp-btn-primary" href="{{site_url('industries')}}">View More</a></p>
|
||||
</div>
|
||||
</div>
|
@ -0,0 +1,47 @@
|
||||
<div class="bg-wrapper mt-5 ">
|
||||
<div class="container">
|
||||
<div class="center-title">
|
||||
<h2>Collaborators & Clients</h2>
|
||||
<p>Our Partners</p>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4 movil-grid">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4 movil-grid">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4 movil-grid">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4 movil-grid">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4 movil-grid">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4 movil-grid">
|
||||
<figure class="client-logo"><a href="#"><img src="images/commons/client-2.png" alt=""></a></figure>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@ -0,0 +1,44 @@
|
||||
<div class="container">
|
||||
<div class="row g-0">
|
||||
<div class="col-lg-4">
|
||||
<div class="tp-construction-panel-aside">
|
||||
<div class="d-flex">
|
||||
<div class="flex-shrink-0">
|
||||
<img class="stripe-icon" src="images/icons/home-niches/construction/medal.png" alt="...">
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3">
|
||||
<h4>Awarded Company</h4>
|
||||
<p>We’ve married that process with the Co-Construct system.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<div class="tp-construction-panel-center">
|
||||
<div class="d-flex">
|
||||
<div class="flex-shrink-0">
|
||||
<img class="stripe-icon" src="images/icons/home-niches/construction/crane-dark.png"
|
||||
alt="...">
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3">
|
||||
<h4>Truck Construction</h4>
|
||||
<p>Having project leaders assemble roster helped break down.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<div class="tp-construction-panel-aside">
|
||||
<div class="d-flex">
|
||||
<div class="flex-shrink-0">
|
||||
<img class="stripe-icon" src="images/icons/home-niches/construction/diploma.png" alt="...">
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3">
|
||||
<h4>Certification</h4>
|
||||
<p>Along with building stronger project teams, the team also uses.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@ -0,0 +1,42 @@
|
||||
|
||||
|
||||
<!-- COUNTER START -->
|
||||
<div class="counter-layer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-6 col-lg-3">
|
||||
<div class="counter-box outstanding-stat">
|
||||
<div class="counter-statistics">
|
||||
<div class="counter" data-count="1450">0</div>
|
||||
<p>PROJECTS COMPLETED</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-3">
|
||||
<div class="counter-box outstanding-stat">
|
||||
<div class="counter-statistics">
|
||||
<div class="counter" data-count="3488">0</div>
|
||||
<p>QUALIFIED ENGINEER</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-3 tablet-view">
|
||||
<div class="counter-box outstanding-stat">
|
||||
<div class="counter-statistics">
|
||||
<div class="counter" data-count="12093">0</div>
|
||||
<p>COUNTRIES COVERED</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-3 tablet-view">
|
||||
<div class="counter-box outstanding-stat">
|
||||
<div class="counter-statistics">
|
||||
<div class="counter" data-count="8444">0</div>
|
||||
<p>HAPPY CUSTOMERS</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- COUNTER END -->
|
@ -0,0 +1,33 @@
|
||||
<!-- GALLERY GRID START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="center-title">
|
||||
<h2>Our Latest Demand</h2>
|
||||
<p>Find Your Career, You Deserve it</p>
|
||||
</div>
|
||||
|
||||
<div class="grid" id="kehl-grid">
|
||||
<div class="grid-sizer"></div>
|
||||
|
||||
@foreach(MPCMS::getPaperDemands() as $JobDemand)
|
||||
<div class="grid-box building">
|
||||
<a class="image-popup-vertical-fit" href="{{site_url($JobDemand->thumb)}}">
|
||||
<div class="image-mask"></div>
|
||||
<img src="{{site_url($JobDemand->thumb)}}" alt="" />
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
<div class="moc-caption">
|
||||
<h4>{{$JobDemand->title}}</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- "Learn More" Link -->
|
||||
<div class="mt-5 text-center">
|
||||
<p><a class="tp-btn-primary" href="{{site_url('job_seekers/current-job-demands')}}">View More</a></p>
|
||||
</div>
|
||||
<!-- GALLERY GRID END -->
|
@ -0,0 +1,110 @@
|
||||
<!-- GALLERY GRID START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="center-title">
|
||||
<h2>Our Latest Demand</h2>
|
||||
<p>Find Your Career, You Deserve it</p>
|
||||
</div>
|
||||
|
||||
<div class="grid" id="kehl-grid">
|
||||
<div class="grid-sizer"></div>
|
||||
|
||||
|
||||
<div class="grid-box building">
|
||||
<a class="image-popup-vertical-fit" href="images/uploads/demand-sample.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/uploads/demand-sample.jpg" alt="" />
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
|
||||
<div class="moc-caption">
|
||||
<h4>Published: 2080/05/15</h4>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="grid-box interior">
|
||||
<a class="image-popup-vertical-fit" href="images/uploads/demand-sample.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/uploads/demand-sample.jpg" alt="" />
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
|
||||
<div class="moc-caption">
|
||||
<h4>Published: 2080/05/15</h4>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="grid-box building">
|
||||
<a class="image-popup-vertical-fit" href="images/uploads/demand-sample.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/uploads/demand-sample.jpg" alt="" />
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
|
||||
<div class="moc-caption">
|
||||
<h4>Published: 2080/05/15</h4>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="grid-box interior">
|
||||
<a class="image-popup-vertical-fit" href="images/uploads/demand-sample.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/uploads/demand-sample.jpg" alt="" />
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
|
||||
<div class="moc-caption">
|
||||
<h4>Published: 2080/05/15</h4>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="grid-box building">
|
||||
<a class="image-popup-vertical-fit" href="images/uploads/demand-sample.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/uploads/demand-sample.jpg" alt="" />
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
|
||||
<div class="moc-caption">
|
||||
<h4>Published: 2080/05/15</h4>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="grid-box interior">
|
||||
<a class="image-popup-vertical-fit" href="images/uploads/demand-sample.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/uploads/demand-sample.jpg" alt="" />
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
|
||||
<div class="moc-caption">
|
||||
<h4>Published: 2080/05/15</h4>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- GALLERY GRID END -->
|
||||
|
@ -0,0 +1,23 @@
|
||||
|
||||
<!-- WIDE SECTION START -->
|
||||
<div class="construction-ws mt-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-xl-6">
|
||||
<div class="ws-img-left-layer">
|
||||
@php $whyus=MPCMS::getarticle('why_recruit_from_nepal') @endphp
|
||||
<img src="{{$whyus->cover_photo}}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8 col-xl-6">
|
||||
<div class="ws-info-right-layer">
|
||||
<div class="ws-right-content">
|
||||
<h2>{!!$whyus->title!!}</h2>
|
||||
<p><strong>Nepalese workers are renowned for their hard work, loyalty, high sense of responsibility and discipline.</strong></p>
|
||||
<p>{!!substr($whyus->text,0,550).'...'!!}</p>
|
||||
<a class="tp-btn-primary" href="#" target="_blank" role="button">Read More...</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- WIDE SECTION END -->
|
@ -0,0 +1,31 @@
|
||||
<!-- SERVICES START -->
|
||||
<div class="bg-wrapper mt-5">
|
||||
<div class="container">
|
||||
<div class="center-title">
|
||||
<h2>Jobs by Categories</h2>
|
||||
<p>Choose Your Desire Category</p>
|
||||
</div>
|
||||
<div class="row">
|
||||
@foreach(MPCMS::getjobcategories() as $category)
|
||||
<div class="col-md-6 col-lg-4 mb-3">
|
||||
<div class="icon-boxes">
|
||||
<figure class="ib-icon">
|
||||
<a href="{{ route('single_job_category', ['alias' => $category->alias]) }}">
|
||||
<img class="img-fluid custom-img-job" src="{{site_url($category->thumb)}}" alt="">
|
||||
</a>
|
||||
</figure>
|
||||
<h4> <a href="job-category/{{$category->alias}}">
|
||||
<p class="custom-text fs-5">{{$category->title}}</p>
|
||||
</a>
|
||||
</h4>
|
||||
<p class="">
|
||||
{!!substr($category->details,0,120)!!}
|
||||
</p>
|
||||
<!-- <a class="learn-more" href="{{ route('single_job_category', ['alias' => $category->alias]) }}">Learn More <i></i></a> -->
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- SERVICES END -->
|
@ -0,0 +1,62 @@
|
||||
<div class="home-slider">
|
||||
<section class="example">
|
||||
<article class="content">
|
||||
|
||||
<div id="rev_slider_1059_1_wrapper" class="rev_slider_wrapper fullscreen-container"
|
||||
data-alias="concept121" data-source="gallery" style="background-color:#000000;padding:0px;">
|
||||
|
||||
<div id="rev_slider_1059_1" class="rev_slider fullscreenbanner" style="display:none;"
|
||||
data-version="5.4.1">
|
||||
<ul>
|
||||
@foreach(MPCMS::getslider() as $slider)
|
||||
<!-- SLIDE -->
|
||||
<li data-index="rs-2972" data-transition="slidingoverlayhorizontal"
|
||||
data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off"
|
||||
data-easein="default" data-easeout="default" data-masterspeed="default"
|
||||
data-thumb="{{$slider->thumb}}" data-rotate="0"
|
||||
data-saveperformance="off" data-title="Contruction" data-param1="" data-param2=""
|
||||
data-param3="" data-param4="" data-param5="" data-param6="" data-param7=""
|
||||
data-param8="" data-param9="" data-param10="" data-description="">
|
||||
<!-- MAIN IMAGE -->
|
||||
<img src="{{$slider->thumb}}" alt=""
|
||||
data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat"
|
||||
data-bgparallax="5" class="rev-slidebg" data-no-retina>
|
||||
|
||||
<div class="tp-caption Concept-SubTitle tp-resizeme rs-parallaxlevel-2"
|
||||
id="slide-2972-layer-4" data-x="['center','center','center','center']"
|
||||
data-hoffset="['0','0','0','0']" data-y="['middle','middle','middle','middle']"
|
||||
data-voffset="['-65','-65','-57','-54']" data-fontsize="['25','25','20','20']"
|
||||
data-lineheight="['25','25','20','20']" data-width="none" data-height="none"
|
||||
data-whitespace="nowrap" data-type="text" data-responsive_offset="on"
|
||||
data-frames='[{"from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","speed":1500,"to":"o:1;","delay":1500,"ease":"Power3.easeInOut"},{"delay":"wait","speed":1000,"to":"x:left(R);","ease":"Power3.easeIn"}]'
|
||||
data-textAlign="['left','left','left','left']" data-paddingtop="[0,0,0,0]"
|
||||
data-paddingright="[0,0,0,0]" data-paddingbottom="[10,10,10,10]"
|
||||
data-paddingleft="[0,0,0,0]"
|
||||
style="z-index: 6; white-space: nowrap;text-transform:left; color: var(--primary-color);">
|
||||
{{$slider->slider_desc}} </div>
|
||||
|
||||
<div class="tp-caption Concept-Title tp-resizeme rs-parallaxlevel-2"
|
||||
id="slide-2972-layer-2" data-x="['center','center','center','center']"
|
||||
data-hoffset="['0','0','0','0']" data-y="['middle','middle','middle','middle']"
|
||||
data-voffset="['0','0','0','0']" data-fontsize="['70','70','50','40']"
|
||||
data-lineheight="['70','70','50','40']"
|
||||
data-width="['none','none','none','400']" data-height="none"
|
||||
data-whitespace="['nowrap','nowrap','nowrap','normal']" data-type="text"
|
||||
data-responsive_offset="on"
|
||||
data-frames='[{"from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","speed":1500,"to":"o:1;","delay":1700,"ease":"Power3.easeInOut"},{"delay":"wait","speed":1000,"to":"x:left(R);","ease":"Power3.easeIn"}]'
|
||||
data-textAlign="['center','center','center','center']"
|
||||
data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]"
|
||||
data-paddingbottom="[10,10,10,10]" data-paddingleft="[0,0,0,0]"
|
||||
style="z-index: 7; white-space: nowrap;text-transform:left; font-family: var(--base-font);">{{$slider->slider_title}}</div>
|
||||
|
||||
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
<div class="tp-bannertimer tp-bottom" style="visibility: hidden !important;"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</article>
|
||||
</section>
|
||||
</div>
|
@ -0,0 +1,99 @@
|
||||
|
||||
<!-- TEAM START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="center-title">
|
||||
<h2>Our Team</h2>
|
||||
<p>We have a team of professionals who are willing to offer you the best delivery and quality of service.
|
||||
</p>
|
||||
</div>
|
||||
<div class="team-carousel-2">
|
||||
<div class="owl-carousel owl-theme">
|
||||
<div class="item">
|
||||
<div class="team-card-box box-shadow-2">
|
||||
<figure class="team-portrait">
|
||||
<img src="images/commons/home-niches/construction/engineer.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-caption">
|
||||
<h4>Harry Callum</h4>
|
||||
<p class="profession">Electrical Engineer</p>
|
||||
<p>Electronic typesetting, remaining essentially.</p>
|
||||
<ul class="social-links">
|
||||
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="team-card-box box-shadow-2">
|
||||
<figure class="team-portrait">
|
||||
<img src="images/commons/home-niches/construction/engineer2.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-caption">
|
||||
<h4>Charlie William</h4>
|
||||
<p class="profession">Construction Engineer</p>
|
||||
<p>Standard chunk of Lorem Ipsum used reproduced.</p>
|
||||
<ul class="social-links">
|
||||
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="team-card-box box-shadow-2">
|
||||
<figure class="team-portrait">
|
||||
<img src="images/commons/home-niches/construction/engineer3.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-caption">
|
||||
<h4>Oscar Rhys</h4>
|
||||
<p class="profession">Electrical Engineer</p>
|
||||
<p>Generators on Internet repeat predefined.</p>
|
||||
<ul class="social-links">
|
||||
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="team-card-box box-shadow-2">
|
||||
<figure class="team-portrait">
|
||||
<img src="images/commons/home-niches/construction/engineer4.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-caption">
|
||||
<h4>Jack Connor</h4>
|
||||
<p class="profession">Construction Engineer</p>
|
||||
<p>Pellentesque ornare sem lacinia quam venenatis.</p>
|
||||
<ul class="social-links">
|
||||
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="team-card-box box-shadow-2">
|
||||
<figure class="team-portrait">
|
||||
<img src="images/commons/home-niches/construction/engineer5.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-caption">
|
||||
<h4>George Smith</h4>
|
||||
<p class="profession">Architect</p>
|
||||
<p>Pellentesque ornare sem lacinia quam venenatis.</p>
|
||||
<ul class="social-links">
|
||||
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- TEAM END -->
|
149
resources/views/client/sunsarioverseas/template-parts/teams.php
Normal file
149
resources/views/client/sunsarioverseas/template-parts/teams.php
Normal file
@ -0,0 +1,149 @@
|
||||
|
||||
<!-- NEWS BLOG START -->
|
||||
<div class="bg-wrapper">
|
||||
<div class="container">
|
||||
<div class="center-title">
|
||||
<h2>Latest News</h2>
|
||||
<p>Visit our blog and keep updated with our news, we will always show you the latest trends in the
|
||||
industry.</p>
|
||||
</div>
|
||||
<div class="news-carousel">
|
||||
<div class="owl-carousel owl-theme">
|
||||
<div class="item">
|
||||
<div class="news-box">
|
||||
<figure class="nb-thumb">
|
||||
<a href="blog-left-sidebar.html"><img
|
||||
src="images/commons/home-niches/construction/blog-news-1.jpg" alt=""></a>
|
||||
</figure>
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
<figure class="moc-thumbnail">
|
||||
<img class="nb-avatar"
|
||||
src="images/commons/home-niches/construction/engineer6.jpg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>James Thomas</h4>
|
||||
<p>Construction</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="nb-caption-bottom">
|
||||
<h4><a href="blog-left-sidebar.html">Industry leadership body announces</a></h4>
|
||||
<p>Positioned to deliver guidance to the industry including on healthy ways senior
|
||||
director of operations at Randstad done.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="news-box">
|
||||
<figure class="nb-thumb">
|
||||
<a href="blog-left-sidebar.html"><img
|
||||
src="images/commons/home-niches/construction/blog-news-2.jpg" alt=""></a>
|
||||
</figure>
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
<figure class="moc-thumbnail">
|
||||
<img class="nb-avatar"
|
||||
src="images/commons/home-niches/construction/engineer7.jpg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>Lily Brown</h4>
|
||||
<p>Engineer</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="nb-caption-bottom">
|
||||
<h4><a href="blog-left-sidebar.html">The immediate benefits utilising
|
||||
housebuilding</a></h4>
|
||||
<p>Different methods may not be able to exchange information quickly. Without
|
||||
information sharing.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="news-box">
|
||||
<figure class="nb-thumb">
|
||||
<a href="blog-left-sidebar.html"><img
|
||||
src="images/commons/home-niches/construction/blog-news-3.jpg" alt=""></a>
|
||||
</figure>
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
<figure class="moc-thumbnail">
|
||||
<img class="nb-avatar"
|
||||
src="images/commons/home-niches/construction/engineer8.jpg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>Jack Connor</h4>
|
||||
<p>Construction</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="nb-caption-bottom">
|
||||
<h4><a href="blog-left-sidebar.html">Anger and frustration’ as investigation drags
|
||||
on</a></h4>
|
||||
<p>Men during the demolition of the Didcot Power Station, some of their relatives
|
||||
and fellow demolition.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="news-box">
|
||||
<figure class="nb-thumb">
|
||||
<a href="blog-left-sidebar.html"><img
|
||||
src="images/commons/home-niches/construction/blog-news-4.jpg" alt=""></a>
|
||||
</figure>
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
<figure class="moc-thumbnail">
|
||||
<img class="nb-avatar"
|
||||
src="images/commons/home-niches/construction/engineer9.jpg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>George Reece</h4>
|
||||
<p>Electrical Engineer</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="nb-caption-bottom">
|
||||
<h4><a href="blog-left-sidebar.html">Cardio is better for your metabolism</a></h4>
|
||||
<p>Classical literature, discovered the undoubtable source. Lorem Ipsum comes from
|
||||
sections.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="news-box">
|
||||
<figure class="nb-thumb">
|
||||
<a href="blog-left-sidebar.html"><img
|
||||
src="images/commons/home-niches/construction/blog-news-5.jpg" alt=""></a>
|
||||
</figure>
|
||||
<div class="nb-caption">
|
||||
<div class="media-object-card">
|
||||
<figure class="moc-thumbnail">
|
||||
<img class="nb-avatar"
|
||||
src="images/commons/home-niches/construction/engineer10.jpg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>Daniel Williams</h4>
|
||||
<p>Construction</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="nb-caption-bottom">
|
||||
<h4><a href="blog-left-sidebar.html">Does technology hold the key to better.</a>
|
||||
</h4>
|
||||
<p>Could the increasing adoption of digital payment systems across the industry
|
||||
begin senior director of operations Randstad.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="owl-theme">
|
||||
<div class="owl-controls">
|
||||
<div class="custom-nav owl-nav"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- NEWS BLOG END -->
|
13
resources/views/client/sunsarioverseas/welcome.blade.php
Normal file
13
resources/views/client/sunsarioverseas/welcome.blade.php
Normal file
@ -0,0 +1,13 @@
|
||||
@include('client.sunsarioverseas.partials.header')
|
||||
@include('client.sunsarioverseas.nav')
|
||||
@include('client.sunsarioverseas.template-parts.slider')
|
||||
|
||||
<section>
|
||||
@include('client.sunsarioverseas.template-parts.about')
|
||||
@include('client.sunsarioverseas.template-parts.promote')
|
||||
@include('client.sunsarioverseas.template-parts.service')
|
||||
@include('client.sunsarioverseas.template-parts.demands')
|
||||
@include('client.sunsarioverseas.template-parts.clients')
|
||||
</section>
|
||||
|
||||
@include('client.sunsarioverseas.partials.footer')
|
Reference in New Issue
Block a user