59 lines
2.1 KiB
PHP
59 lines
2.1 KiB
PHP
@extends('front.layouts.app')
|
|
@section('content')
|
|
<main class="container">
|
|
@if (!is_null($featured_post))
|
|
<div class="p-4 p-md-5 mb-4 rounded-3 text-body-emphasis bg-white shadow-sm">
|
|
<div class="col-lg-12 px-0">
|
|
<h1 class="display-6 fw-semibold mb-1">{{ $featured_post->title }}</h1>
|
|
|
|
<div class="mb-1 text-body-secondary">
|
|
|
|
@if (!is_empty($featured_post->published_at))
|
|
{{ $featured_post->published_at->format('M j') }}
|
|
@endif
|
|
|
|
<i class="bi bi-dot"></i>
|
|
|
|
{{ markdown_min_read($featured_post->body) }}
|
|
|
|
</div>
|
|
|
|
<p class="lead my-3 mb-3">{{ $featured_post->excerpt }}</p>
|
|
<p class="lead mb-0"><a
|
|
href="{{ route('front.post', ['slug' => $featured_post->slug, 'category_slug' => $featured_post->category->slug]) }}"
|
|
class=" fw-bold">Continue reading...</a></p>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
|
|
<div class="row g-4">
|
|
<div class="col-md-8">
|
|
|
|
@if ($latest_posts->count() > 0)
|
|
@foreach ($latest_posts as $post)
|
|
@include('front.partials.post_detail', ['post' => $post])
|
|
@endforeach
|
|
|
|
<div class="w-100 d-flex justify-content-center">
|
|
<a class="btn btn-primary shadow rounded-pill px-3 text-decoration-none"
|
|
href="{{ route('front.all') }}">View Latest News</a>
|
|
</div>
|
|
@else
|
|
<div class="py-3 text-center">
|
|
<div class="mb-2">No posts found yet.</div>
|
|
</div>
|
|
@endif
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<div class="position-sticky" style="top: 2rem;">
|
|
@include('front.partials.about')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</main>
|
|
@endsection
|