Inital Commit
This commit is contained in:
32
resources/views/client/aarav/inside/article.blade.php
Normal file
32
resources/views/client/aarav/inside/article.blade.php
Normal file
@@ -0,0 +1,32 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>{{$article->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<p class="medium-text text-light">{{$article->title}}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="chairman pt-5 custom-background">
|
||||
<div class="container">
|
||||
|
||||
<p class="custom-text text-dark fs-5 text-uppercase" uk-scrollspy="cls: uk-animation-slide-left-medium; repeat: true">{{$article->title}} </p>
|
||||
|
||||
<div class="row g-5">
|
||||
|
||||
<div class="col-md-8">
|
||||
{!!processForShortcode($article->text)!!}
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
@include("client.aarav.inside.sidebar")
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
@endsection
|
42
resources/views/client/aarav/inside/certificates.blade.php
Normal file
42
resources/views/client/aarav/inside/certificates.blade.php
Normal file
@@ -0,0 +1,42 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>License & Permits - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
|
||||
<p class="medium-text text-light">License & Certificates</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients1 section-padding custom-background position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4 custom-text">Licenses and Certificates</p>
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
@foreach(MPCMS::getCertificates() as $Certificate)
|
||||
<div class="col-md-3">
|
||||
<a href="{{site_url($Certificate->thumb)}}" data-fancybox="gallery1">
|
||||
<img class="img-fluid" src="{{site_url($Certificate->thumb)}}" alt="">
|
||||
</a>
|
||||
<p class="custom-text2 mt-3">{{$Certificate->title}}</p>
|
||||
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
@endsection
|
37
resources/views/client/aarav/inside/clients.blade.php
Normal file
37
resources/views/client/aarav/inside/clients.blade.php
Normal file
@@ -0,0 +1,37 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>Clients - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
<p class="text-light">Home / Clients</p>
|
||||
<p class="medium-text text-light">Our Clients</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients partners section-padding custom-color position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4"><i class="fa-solid fa-minus me-2 custom-icon"></i>Our Clients</p>
|
||||
<div class="vstack gap-3 pt-3">
|
||||
<div class="row g-3 text-center">
|
||||
@foreach(MPCMS::getCompanies() as $client)
|
||||
<div class="col-md-3">
|
||||
<a href="{{site_url($client->logo)}}" data-fancybox="galleryc1">
|
||||
<img class="img-fluid custom-img-job" src="{{site_url($client->logo)}}" alt="">
|
||||
</a>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
81
resources/views/client/aarav/inside/contact.blade.php
Normal file
81
resources/views/client/aarav/inside/contact.blade.php
Normal file
@@ -0,0 +1,81 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>Contact - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:0; "></div>
|
||||
<p class="text-light">Home / Contact</p>
|
||||
<p class="medium-text text-light">Contact Us</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section-padding ">
|
||||
<div class="container">
|
||||
<div class="row g-5 d-flex align-items-center">
|
||||
|
||||
<div class="col-md-6 contact-details">
|
||||
<p>
|
||||
|
||||
Find us in these locations and contact us directly for any additional queries.
|
||||
</p>
|
||||
<div class="vstack gap-4 get-in-touch">
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-location-arrow"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Location</p>
|
||||
<p class="m-0 mt-2 fw-bold">{{$contact->address}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-envelope"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Mail</p>
|
||||
<p class="m-0 mt-2 fw-bold"><a class="text-dark" href="mailto:{{$contact->email1}}">{{$contact->email1}}</a> </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-phone"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Phone</p>
|
||||
<p class="m-0 mt-2 fw-bold"><a class="text-dark" href="tel:{{$contact->tel}}">{{$contact->tel}}</a> </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-phone"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Secondary Phone</p>
|
||||
<p class="m-0 mt-2 fw-bold"><a class="text-dark" href="tel:{{$contact->fax}}">{{$contact->fax}}</a> </p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<p class="custom-text fs-5 text-uppercase">Contact Form</p>
|
||||
{{MPCMS::showForm($contact->forms_id)}}
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section> {!!$contact->google_map!!}
|
||||
|
||||
|
||||
@endsection
|
28
resources/views/client/aarav/inside/country_single.blade.php
Normal file
28
resources/views/client/aarav/inside/country_single.blade.php
Normal file
@@ -0,0 +1,28 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>{{$country->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container">
|
||||
<p class="medium-text text-light">{{$country->title}}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="pt-5 custom-background">
|
||||
<div class="container">
|
||||
<div class="row g-5 pb-5">
|
||||
<p class="fs-4 fw-bold text-center green-bg text-light p-2">{{$country->title}}</p>
|
||||
<div class="col-md-3">
|
||||
<img class="img-fluid rounded" src="{{site_url($country->image_thumb)}}" alt="">
|
||||
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<p> {!!processForShortcode($country->details)!!} </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
@@ -0,0 +1,39 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>Demand Countries - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
<p class="text-light">Home / Demand Countries</p>
|
||||
<p class="medium-text text-light">Countries on Demand</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients section-padding custom-background position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4 custom-text">List of countries having Job Demands</p>
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
@foreach(MPCMS::getCountries() as $country)
|
||||
<div class="col-md-4">
|
||||
<a href="country/{{$country->alias}}">
|
||||
<img class="img-fluid custom-img-job" src="{{$country->image_thumb}}" alt="flag">
|
||||
</a>
|
||||
<p class="custom-text2 mt-3">{{$country->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
32
resources/views/client/aarav/inside/demand_single.blade.php
Normal file
32
resources/views/client/aarav/inside/demand_single.blade.php
Normal file
@@ -0,0 +1,32 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>{{$demand->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container">
|
||||
<p class="medium-text text-light">{{$demand->title}}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="pt-5 custom-background">
|
||||
<div class="container">
|
||||
<div class="row g-5 pb-5">
|
||||
<div class="col-9">
|
||||
<p class="fs-4 fw-bold text-center green-bg text-light p-2">{{$demand->title}}</p>
|
||||
|
||||
<img class="img-fluid rounded" src="{{site_url($demand->thumb)}}" alt="">
|
||||
{!!$demand->text!!}
|
||||
<p class="medium-text">Apply Now</p>
|
||||
{{MPCMS::showForm('apply-now')}}
|
||||
</div>
|
||||
<div class="col-3">
|
||||
@include("client.aarav.inside.sidebar")
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
40
resources/views/client/aarav/inside/demands.blade.php
Normal file
40
resources/views/client/aarav/inside/demands.blade.php
Normal file
@@ -0,0 +1,40 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>Demand Countries - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
|
||||
<p class="medium-text text-light">Job Demand</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients1 section-padding custom-background position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4 custom-text">List of current Job Demands</p>
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
@foreach(MPCMS::getPaperDemands() as $JobDemand)
|
||||
<div class="col-md-3">
|
||||
<a href="{{site_url($JobDemand->thumb)}}" data-fancybox="gallery1">
|
||||
<img class="img-fluid" src="{{site_url($JobDemand->thumb)}}" alt="">
|
||||
</a>
|
||||
<p class="custom-text2 mt-3">{{$JobDemand->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
@@ -0,0 +1,36 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>Clients - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
<p class="text-light">Home / Industries Served</p>
|
||||
<p class="medium-text text-light">List of Industries</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients partners section-padding custom-color position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="vstack gap-3 pt-3">
|
||||
<div class="row g-3 text-center">
|
||||
@foreach(MPCMS::getCompanies() as $client)
|
||||
<div class="col-md-2 white-bg>">
|
||||
<a href="{{site_url($client->logo)}}" data-fancybox="galleryc1">
|
||||
<img class="img-fluid custom-img-job" src="{{site_url($client->logo)}}" alt="">
|
||||
</a>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
48
resources/views/client/aarav/inside/job-categories.blade.php
Normal file
48
resources/views/client/aarav/inside/job-categories.blade.php
Normal file
@@ -0,0 +1,48 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>Job Categories - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
<p class="text-light">Home / Job Categories</p>
|
||||
<p class="medium-text text-light">Browse Categories</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="job-category section-padding custom-background">
|
||||
<div class="container vstack gap-3">
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
|
||||
@foreach(MPCMS::getjobcategories() as $category)
|
||||
<div class="col-md-4">
|
||||
<div class="graphics-card p-2 position-relative">
|
||||
<div>
|
||||
<div class="uk-inline-clip uk-transition-toggle" tabindex="0">
|
||||
<a href="{{ route('single_job_category', ['alias' => $category->alias]) }}">
|
||||
<img class="img-fluid custom-img-job" src="{{site_url($category->thumb)}}" alt="">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contents-card ">
|
||||
<a href="{{ route('single_job_category', ['alias' => $category->alias]) }}">
|
||||
<p class="custom-text fs-5">{{$category->title}}</p>
|
||||
</a>
|
||||
<p class="">
|
||||
{!!substr($category->details,0,120).'...'!!}
|
||||
</p>
|
||||
<a class="learn-more" href="{{ route('single_job_category', ['alias' => $category->alias]) }}">Learn More <i class="fa-solid fa-arrow-right ms-2"></i></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
@endsection
|
38
resources/views/client/aarav/inside/job-demands.blade.php
Normal file
38
resources/views/client/aarav/inside/job-demands.blade.php
Normal file
@@ -0,0 +1,38 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>Demand Countries - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
|
||||
<p class="medium-text text-light">Job Demand</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients1 section-padding custom-background position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4 custom-text">List of current Job Demands</p>
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
@foreach(MPCMS::getPaperDemands() as $JobDemand)
|
||||
<div class="col-md-3">
|
||||
<a href="{{site_url($JobDemand->thumb)}}" data-fancybox="gallery1">
|
||||
<img class="img-fluid" src="{{site_url($JobDemand->thumb)}}" alt="">
|
||||
</a>
|
||||
<p class="custom-text2 mt-3">{{$JobDemand->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
@@ -0,0 +1,32 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>{{$job_category->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container">
|
||||
<p class="medium-text text-light">{{$job_category->title}}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="pt-5 custom-background">
|
||||
<div class="container">
|
||||
<div class="row g-5 pb-5">
|
||||
<div class="col-12">
|
||||
|
||||
<div class="col-md-12">
|
||||
<img class="img-fluid rounded" src="{{site_url($job_category->thumb)}}" alt="">
|
||||
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<p> {!!$job_category->details!!} </p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
24
resources/views/client/aarav/inside/sidebar.blade.php
Normal file
24
resources/views/client/aarav/inside/sidebar.blade.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<div class="card mb-5">
|
||||
<div class="card-header">
|
||||
<h5 class="card-title mb-0">
|
||||
Demand Countries</h5> </div>
|
||||
<div class="card-body">
|
||||
<div class="vstack gap-2">
|
||||
|
||||
<?php foreach(MPCMS::getCountries() as $country): ?>
|
||||
|
||||
<a href="{{route('single_country',$country->alias)}}"><i class="fa-solid fa-angle-right me-2"></i>{{$country->title}}</a>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card mb-5">
|
||||
<div class="card-header">Job Demands</div>
|
||||
<div class="card-body">
|
||||
<div class="vstack gap-2">
|
||||
<?php foreach(MPCMS::getPaperDemands() as $PaperDemand): ?>
|
||||
<a href="{{route('single_paper_demand',$PaperDemand->alias)}}"><i class="fa-solid fa-angle-right me-2"></i>{{$PaperDemand->title}}</a>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
37
resources/views/client/aarav/inside/teams.blade.php
Normal file
37
resources/views/client/aarav/inside/teams.blade.php
Normal file
@@ -0,0 +1,37 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>Our Team - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
<p class="medium-text text-light">Our Team</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="job-category section-padding custom-background">
|
||||
<div class="container vstack gap-3">
|
||||
<p class="fs-4 custom-text">List of Team Members</p>
|
||||
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
@foreach(MPCMS::getTeams() as $Team)
|
||||
<div class="col-md-3">
|
||||
<a href="{{site_url($Team->thumb)}}" data-fancybox="gallery1">
|
||||
<img class="img-fluid" src="{{site_url($Team->thumb)}}" alt="">
|
||||
</a>
|
||||
<p class="custom-text2 mt-3">{{$Team->title}}</p>
|
||||
<p class="">{{$Team->designation}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
52
resources/views/client/aarav/nav.blade.php
Normal file
52
resources/views/client/aarav/nav.blade.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<div class="green-bg p-2 above-nav w-100 text-light">
|
||||
<div class="container">
|
||||
<div class="row g-3 d-flex justify-content-between align-items-center">
|
||||
<div class="col-md-4">
|
||||
<p class="m-0"><i class="fa-regular fa-envelope me-2"></i><a class="text-light" href="mailto: {{SITEVARS->email}} ">{{SITEVARS->email}} </a> </p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p class="m-0"><i class="fa-solid fa-location-dot me-2"></i> Sinamangal -9, Kathmandu, Nepal</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p class="float-md-end m-0 socials-head">Follow Us -
|
||||
<a href="{{SITEVARS->fb}} "><i class="fa-brands fa-facebook me-3 ms-2"></i></a>
|
||||
<a href="{{SITEVARS->insta}} "><i class="fa-brands fa-instagram me-3"></i></a>
|
||||
<a class="text-light learn-more" href="tel:{{SITEVARS->phone}} "> Call Now <i class="ms-2 fa-solid fa-phone"></i>{{SITEVARS->phone}}</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<nav class="navbar navbar-expand-lg" id="navbar_top">
|
||||
<div class="container">
|
||||
<div class="row g-3 d-flex align-items-center justify-content-between">
|
||||
<div class="col-md-2 col-6">
|
||||
<a class="navbar-brand" href="{{site_url()}}">
|
||||
<img src="{{site_url(SITEVARS->primary_logo)}}" alt="Logo" width="90%" height="auto" class="d-inline-block align-text-top logo">
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="col-md-9 col-lg-10 col-6">
|
||||
<button class="navbar-toggler float-end bg-transparent" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasDarkNavbar" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon float-end"><i class="fa-solid fa-bars custom-text"></i></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse d-flex justify-content-md-end d-none d-lg-block" id="navbarTogglerDemo01">
|
||||
{{MPCMS::showMenu('header-menu')}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="offcanvas offcanvas-end text-bg-dark d-xs-block d-sm-block d-md-block d-lg-none d-xl-none" tabindex="-1" id="offcanvasDarkNavbar" aria-labelledby="offcanvasDarkNavbarLabel">
|
||||
<div class="offcanvas-header">
|
||||
<a class="navbar-brand" href="">
|
||||
<img src="{{site_url(SITEVARS->primary_logo)}}" alt="Logo" width="90%" height="auto" class="d-inline-block align-text-top logo p-5 pb-0">
|
||||
</a> <button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="offcanvas-body">
|
||||
{{MPCMS::showMenu('header-menu')}}
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
30
resources/views/client/aarav/partials/footer.blade.php
Normal file
30
resources/views/client/aarav/partials/footer.blade.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<section class="footer section-padding2 dark-bg text-light" style="background-image: url('assets/img/bg-dark.jpg'); background-repeat: no-repeat; background-position: center top; background-size: cover;">
|
||||
<div class="container">
|
||||
<div class="row g-5 d-flex justify-content-center">
|
||||
<div class="col-md-4">
|
||||
|
||||
<p class="fs-5 fw-bold">About Us</p>
|
||||
<p> {!!SITEVARS->content2!!}</p>
|
||||
<p class="fs-5 hstack gap-3 mt-3 socials-head">
|
||||
<span><a href="{{SITEVARS->fb}}"><i class="fa-brands fa-facebook"></i></a></span>
|
||||
<span><a href="{{SITEVARS->insta}}"><i class="fa-brands fa-instagram"></i></a></span>
|
||||
<span><a href="{{SITEVARS->twitter}}"><i class="fa-brands fa-twitter"></i></a></span>
|
||||
</p>
|
||||
<p class="m-0">© {{SITEVARS->copyright_text}}</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p class="fs-5 fw-bold">Where to find us ?</p>
|
||||
{!!SITEVARS->google_map!!}
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p class="fs-5 fw-bold">Quick Links</p>
|
||||
<div class="vstack gap-2">
|
||||
<?php $FooterMenu=MPCMS::getMenuItems('footer-menu-1'); ?>
|
||||
@foreach($FooterMenu as $MenuItem)
|
||||
<a href="{{route($MenuItem->alias)}}"><i class="fa-solid fa-angle-right me-2"></i>{{$MenuItem->title}}</a>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
@@ -0,0 +1,14 @@
|
||||
<script>
|
||||
|
||||
</script>
|
||||
<script src="{!! template('js/jquery.min.js') !!}"></script>
|
||||
<script src="{!! template('js/jquery.fancybox.min.js') !!}"></script>
|
||||
<script src="{!! template('js/lightbox.js') !!}"></script>
|
||||
<script src="{!! template('js/owl.carousel.min.js') !!}"></script>
|
||||
<script src="{!! template('js/select2.min.js') !!}"></script>
|
||||
<script src="{!! template('js/custom.js') !!}"></script>
|
||||
<script src="{!! template('js/bootstrap.min.js') !!}"></script>
|
||||
<script src="{!! template('js/bootstrap.bundle.min.js') !!}"></script>
|
||||
<!-- <link rel="stylesheet" href="css/owl.theme.default.min.css"> -->
|
||||
<script src="{!! template('js/index.bundle.min.js') !!}"></script>
|
||||
<script src="{!! template('js/uikit.min.js') !!}"></script>
|
25
resources/views/client/aarav/partials/header.blade.php
Normal file
25
resources/views/client/aarav/partials/header.blade.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
@yield('header')
|
||||
<link rel="icon" type="image/x-icon" href="{!! template('img/fav_icon.png')!!} ">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{!! template('img/favicon/apple-touch-icon.png')!!}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{!! template('img/favicon/favicon-32x32.png')!!}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{!! template('img/favicon/favicon-16x16.png')!!}">
|
||||
<link rel="manifest" href="{!! template('img/favicon/site.webmanifest')!!}">
|
||||
<link rel="mask-icon" href="{!! template('img/favicon/safari-pinned-tab.svg')!!}" color="#5bbad5">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="stylesheet" href="{!! template('css/lightbox.css')!!}">
|
||||
<link rel="stylesheet" href="{!! template('css/owl.carousel.min.css')!!}">
|
||||
<link rel="stylesheet" href="{!! template('css/bootstrap.min.css')!!}">
|
||||
<link href="{!! template('css/select2.min.css')!!}" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" />
|
||||
<link rel="stylesheet" href="{!! template('css/uikit.min.css')!!}" />
|
||||
<link rel="stylesheet" href="{!! template('css/jquery.fancybox.min.css')!!}" />
|
||||
<link rel="stylesheet" href="{!! template('css/style.css')!!}">
|
||||
|
||||
|
||||
|
||||
|
41
resources/views/client/aarav/partials/layout.blade.php
Normal file
41
resources/views/client/aarav/partials/layout.blade.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}" />
|
||||
@include('client.aarav.partials.header')
|
||||
@include('client.aarav.partials.headerincludes')
|
||||
<title>{{ env('APP_NAME') }}</title>
|
||||
<script>
|
||||
var APP_URL = '{{ env('
|
||||
APP_URL ') }}';
|
||||
</script>
|
||||
@yield('css')
|
||||
@stack('css')
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@include("client.aarav.nav")
|
||||
@yield('content')
|
||||
@include('client.aarav.partials.footer')
|
||||
@include('client.aarav.partials.footerincludes')
|
||||
@yield('js')
|
||||
@stack('js')
|
||||
<script>
|
||||
var imgTags = document.getElementsByTagName('img');
|
||||
for (var i = 0; i < imgTags.length; i++) {
|
||||
var imgTag = imgTags[i];
|
||||
var originalSrc = imgTag.src;
|
||||
imgTag.onerror = function() {
|
||||
if (this.src === originalSrc) {
|
||||
console.log('Error loading image: ' + originalSrc);
|
||||
this.src = '{{site_url(SITEVARS->no_image)}}';
|
||||
}
|
||||
};
|
||||
imgTag.src = originalSrc;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
48
resources/views/client/aarav/slider.blade.php
Normal file
48
resources/views/client/aarav/slider.blade.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<!-- Carousel -->
|
||||
<section class="slider position-relative">
|
||||
<div id="demo" class="carousel slide" data-bs-ride="carousel" data-interval="1000">
|
||||
|
||||
<!-- Indicators/dots -->
|
||||
<div class="carousel-indicators">
|
||||
<button type="button" data-bs-target="#demo" data-bs-slide-to="0" class="active"></button>
|
||||
<button type="button" data-bs-target="#demo" data-bs-slide-to="1"></button>
|
||||
<button type="button" data-bs-target="#demo" data-bs-slide-to="2"></button>
|
||||
</div>
|
||||
|
||||
<!-- The slideshow/carousel -->
|
||||
<div class="carousel-inner">
|
||||
<?php $a = 0;?>
|
||||
@foreach(MPCMS::getslider() as $slider)
|
||||
|
||||
<div class="carousel-item <?php if($a==0):?>active<?php endif; ?>">
|
||||
<img src="{{ $slider->thumb}}" alt="" class="img-fluid">
|
||||
<div class="g-3 col-md-4 <?php if ($a == 0 || $a == 1) : ?> main-content <?php else : ?> main-content2 <?php endif; ?> ps-3 pe-3" uk-scrollspy="cls: uk-animation-slide-top; delay:200; repeat: true">
|
||||
<p class="custom-text fw-bold">{{ $slider->slider_title}}</p>
|
||||
<p class="giant-text text-capitalize text-uppercase fw-bold">{{ $slider->slider_desc}}</p>
|
||||
<div class="hstack gap-3 mt-5">
|
||||
<div>
|
||||
<a class="custom-btn " aria-current="page" href="{{ $slider->url1}}">Explore Jobs</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<?php $a++; ?>
|
||||
|
||||
@endforeach
|
||||
|
||||
</div>
|
||||
<div class="nextPrev">
|
||||
<button class="carousel-prev btn" type="button" data-bs-target="#demo" data-bs-slide="prev">
|
||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||
<span class="visually-hidden">Previous</span>
|
||||
</button>
|
||||
<button class="carousel-next btn" type="button" data-bs-target="#demo" data-bs-slide="next">
|
||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||
<span class="visually-hidden">Next</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
137
resources/views/client/aarav/welcome.blade.php
Normal file
137
resources/views/client/aarav/welcome.blade.php
Normal file
@@ -0,0 +1,137 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>{{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@section('content')
|
||||
@include("client.aarav.slider")
|
||||
<section class="section-padding custom-background">
|
||||
<div class="container">
|
||||
<div class="row g-5 ">
|
||||
<div class="col-md-6" uk-scrollspy="cls: uk-animation-slide-right-medium; repeat: true">
|
||||
@php $aboutus=MPCMS::getarticle('welcome') @endphp
|
||||
<img src="{{$aboutus->cover_photo}}" class="img-fluid object-fit-cover" alt="">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<p class="mt-3">
|
||||
<p class="medium-text text-uppercase fw-bold">{!!$aboutus->title!!}</p>
|
||||
{!!substr($aboutus->text,0,150).'...'!!}
|
||||
</p>
|
||||
|
||||
<div class="row g-3 d-flex justify-content-start mt-3 about-us" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="col-4 text-center ">
|
||||
<i class="fa-regular fa-thumbs-up"></i>
|
||||
<p class="fw-bold">Successful Ventures</p>
|
||||
</div>
|
||||
<div class="col-4 text-center ">
|
||||
<i class="fa-regular fa-user"></i>
|
||||
<p class="fw-bold">Business Range </p>
|
||||
|
||||
</div>
|
||||
<div class="col-4 text-center ">
|
||||
<i class="fa-solid fa-earth-americas"></i>
|
||||
<p class="fw-bold">Countries Affiliation</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-4" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<a class="learn-more" aria-current="page" href="about/introduction">Read More <i class="fa-solid fa-arrow-right ms-2"></i></a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="bg-light partners section-padding" style="background-image: url('assets/img/bg-dark.jpg'); background-repeat: no-repeat; background-position: center top; background-size: cover;">
|
||||
<div class="container">
|
||||
<div class="text-center">
|
||||
<p class="fw-bold">Our Partners</p>
|
||||
<p class="medium-text">Collaborators & Clients</p>
|
||||
</div>
|
||||
<div class="owl-carousel owl-theme mt-5" id="clients">
|
||||
@foreach(MPCMS::getCompanies() as $client)
|
||||
<div class="item">
|
||||
<img class="img-fluid custom-img-job" src="{{env('APP_URL').'/'.$client->logo}}" alt="">
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
<div class="mt-5 text-center">
|
||||
<a class="learn-more" href="industries-served">View More <i class="fa-solid fa-arrow-right ms-2"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="job-category custom-color section-padding" style="background-image: url('assets/img/bg-dark.jpg'); background-repeat: no-repeat; background-position: center top; background-size: cover;">
|
||||
<div class="container">
|
||||
<div class="text-center">
|
||||
<p class="">Jobs by Categories</p>
|
||||
<p class="medium-text">Choose Your Desire Category</p>
|
||||
</div>
|
||||
<div class="text-start">
|
||||
<button class="customPrevBtn me-2 p-2"><i class="fa-solid fa-arrow-left fs-4"></i></button>
|
||||
<button class="customNextBtn p-2"><i class="fa-solid fa-arrow-right fs-4"></i></button>
|
||||
</div>
|
||||
<div class="owl-carousel owl-theme" id="category">
|
||||
@foreach(MPCMS::getjobcategories() as $category)
|
||||
<div class="item">
|
||||
<div class="graphics-card p-2 position-relative">
|
||||
<div>
|
||||
<div class="uk-inline-clip uk-transition-toggle" tabindex="0">
|
||||
<a href="job-category/{{$category->alias}}">
|
||||
<img class="uk-transition-scale-up uk-transition-opaque" src="{{($category->thumb)}}" width="1800" height="1200" alt="">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contents-card ">
|
||||
<a href="job-category/{{$category->alias}}">
|
||||
<p class="custom-text fs-5">{{$category->title}}</p>
|
||||
</a>
|
||||
<p class="">
|
||||
{!!substr($category->details,0,120).'...'!!}
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="section-padding all-job" style="background-image: url(assets/img/ban.jpg); background-size:cover; background-position:50% 0%;">
|
||||
<div class="container">
|
||||
<div class="text-center">
|
||||
<p class="custom-text fw-bold fs-5">All Jobs Post</p>
|
||||
<p class="medium-text">Find Your Career, You Deserve it </p>
|
||||
</div>
|
||||
<div class="row d-flex align-items-center">
|
||||
@foreach(MPCMS::getPaperDemands() as $PaperDemand)
|
||||
<div class="col-md-3">
|
||||
<a href="{{($PaperDemand->thumb)}}" data-fancybox="gallery1">
|
||||
<img class="img-fluid rounded" src="{{($PaperDemand->thumb)}}" alt="">
|
||||
<div class="mt-3">
|
||||
<p class="text-center small-text"><i class="fa-solid fa-calendar-check me-2"></i>{{$PaperDemand->title}}</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
<div class="mt-5 text-center">
|
||||
<a class="learn-more" href="{{asset('job_seekers/current-job-demands')}}">View More <i class="fa-solid fa-arrow-right ms-2"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
@endsection
|
Reference in New Issue
Block a user