37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
@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 |