51 lines
1.6 KiB
PHP
51 lines
1.6 KiB
PHP
@section('header')
|
|
<title>Our Team - {{env("APP_NAME")}}</title>
|
|
@endsection
|
|
@include('client.sunsari.partials.header')
|
|
@include('client.sunsari.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>Our Team </h1>
|
|
</div>
|
|
<div class="left-page-nav">
|
|
<!-- Breadcrumbs -->
|
|
<ul class="breadcrumb">
|
|
<li><a href="#">Home</a></li>
|
|
<li>About</li>
|
|
<li class="current">Our Team</li>
|
|
</ul>
|
|
<!--/ Breadcrumbs -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- PAGE HERO END -->
|
|
<section>
|
|
<!-- CONTENT START -->
|
|
<section>
|
|
<div class="container mt-5 mb-5">
|
|
<div class="row all-team-layer">
|
|
@foreach (MPCMS::getTeams() as $Team)
|
|
<div class="col-md-6 col-lg-4">
|
|
<div class="team-card-shadow">
|
|
<figure class="team-card-shadow-portrait">
|
|
<img src="{{ site_url($Team->thumb) }}" alt="" height="300px">
|
|
</figure>
|
|
<div class="team-card-caption">
|
|
<h3>{{ $Team->title }}</h3>
|
|
<p>{{ $Team->designation }}</p>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- CONTENT END -->
|
|
|
|
|
|
@include('client.sunsari.partials.footer')
|