32 lines
958 B
PHP
32 lines
958 B
PHP
|
@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
|