first
This commit is contained in:
78
resources/views/client/rohini/pages/team-template.blade.php
Normal file
78
resources/views/client/rohini/pages/team-template.blade.php
Normal file
@@ -0,0 +1,78 @@
|
||||
@php
|
||||
$teams = getTeams(limit: null, order: 'asc');
|
||||
@endphp
|
||||
@extends('client.rohini.layouts.app')
|
||||
@section('content')
|
||||
@include('client.rohini.pages.partials.breadcrumb')
|
||||
|
||||
<!--Team Page Start-->
|
||||
<section class="team-page">
|
||||
<div class="team-page__bg" style="background-image: url('assets/images/shapes/team-page-shape-1.png');"></div>
|
||||
<div class="container">
|
||||
<div class="section-title-two text-center">
|
||||
<div class="section-title-two__tagline-box">
|
||||
<p style="font-size:17px" class="section-title-two__tagline">{{ $page->short_description }}</p>
|
||||
<div class="section-title-two__shape">
|
||||
<img src="assets/images/shapes/section-title-two-shape.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<h2 class="section-title-two__title">{!! $page->description !!}</h2>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
||||
<!--Team Two Single Start-->
|
||||
@foreach($teams as $team)
|
||||
<div class="col-xl-3 col-lg-6 col-md-6">
|
||||
<div class="team-two__single">
|
||||
<div class="team-two__img-box">
|
||||
<div class="team-two__img">
|
||||
<img src="{{ $team->image }}" alt="">
|
||||
</div>
|
||||
@if($team->facebook || $team->twitter || $team->linkedin)
|
||||
|
||||
<div class="team-two__social">
|
||||
<ul class="clearfix list-unstyled">
|
||||
@if($team->linkedin)
|
||||
<li>
|
||||
<a href="{{ $team->linkedin }}" target="_blank">
|
||||
<i class="icon-linked-in-logo-of-two-letters"></i>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
@if($team->twitter)
|
||||
<li>
|
||||
<a href="{{ $team->twitter }}" target="_blank">
|
||||
<i class="icon-twitter"></i>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
@if($team->facebook)
|
||||
<li>
|
||||
<a href="{{ $team->facebook }}" target="_blank">
|
||||
<i class="icon-facebook-app-symbol"></i>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
</ul>
|
||||
<span class="icon-share"></span>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
<div class="team-two__content">
|
||||
<h3 class="team-two__name"><a href="javascript:void(0);">{{ $team->title }}</a></h3>
|
||||
<p class="team-two__sub-title">{{ $team->designation }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
<!--Team Two Single End-->
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!--Team Page End-->
|
||||
|
||||
<!--Join Team One Start-->
|
||||
<!--Join Team One End-->
|
||||
|
||||
@include('client.rohini.pages.partials.newsletter')
|
||||
@endsection
|
||||
Reference in New Issue
Block a user