51 lines
1.7 KiB
PHP
51 lines
1.7 KiB
PHP
|
@section('header')
|
||
|
<title>{{$article->title}} - {{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>{{$article->title}}</h1>
|
||
|
|
||
|
</div>
|
||
|
<div class="left-page-nav">
|
||
|
<!-- Breadcrumbs -->
|
||
|
<ul class="breadcrumb">
|
||
|
<li><a href="#">Home</a></li>
|
||
|
<li class="current">{{$article->title}}</li>
|
||
|
</ul>
|
||
|
<!--/ Breadcrumbs -->
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- PAGE HERO END -->
|
||
|
<!-- CONTENT START -->
|
||
|
|
||
|
|
||
|
|
||
|
<section>
|
||
|
<!-- ABOUT US 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 mb-4">
|
||
|
<figure class="about-right-feauture">
|
||
|
<img src="{{site_url($article->cover_photo)}}" alt="">
|
||
|
</figure>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- ABOUT US END -->
|
||
|
|
||
|
</section>
|
||
|
<!-- CONTENT END -->
|
||
|
@include('client.sunsari.partials.footer')
|