Inital Commit
This commit is contained in:
33
resources/views/client/target/inside/article.blade.php
Normal file
33
resources/views/client/target/inside/article.blade.php
Normal file
@ -0,0 +1,33 @@
|
||||
@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
|
Reference in New Issue
Block a user