33 lines
1002 B
PHP
33 lines
1002 B
PHP
@extends('client.humancarerecruit.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 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>
|
|
|
|
</section>
|
|
|
|
|
|
@endsection |