29 lines
673 B
PHP
29 lines
673 B
PHP
@extends('front.layouts.app')
|
|
@section('content')
|
|
<main class="container">
|
|
|
|
@include('front.partials.breadcrumbs')
|
|
|
|
<div class="row g-4">
|
|
<div class="col-md-8">
|
|
|
|
<article class="blog-post bg-white rounded-3 shadow-sm px-5 py-4
|
|
">
|
|
{!! $content !!}
|
|
</article>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<div class="position-sticky" style="top: 2rem;">
|
|
@include('front.partials.about')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
@endsection
|
|
|
|
@push('top_head')
|
|
{!! $breadcrumb_context !!}
|
|
@endpush
|