34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
@extends('client.target.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-6">
|
|
{!! processForShortcode($article->text) !!}
|
|
|
|
</div>
|
|
<div class="col-lg-6 spacing-lg">
|
|
<figure class="about-right-feauture">
|
|
<img src="{{site_url($article->cover_photo)}}" alt="">
|
|
</figure>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
@endsection
|