2024-08-04 19:07:03 +00:00
|
|
|
@extends('layouts.guest')
|
|
|
|
|
|
|
|
|
|
@section('title', 'Home')
|
|
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
<section id="blog-head" class="bubble-panel">
|
|
|
|
|
<h1>{{ config('blog.publishing_name') }}<h1>
|
|
|
|
|
<p><i>{{ config('blog.subheading') }}</i></p>
|
|
|
|
|
</section>
|
2025-03-19 21:40:54 +00:00
|
|
|
<section>
|
|
|
|
|
@forelse($articles as $article)
|
|
|
|
|
<article>
|
|
|
|
|
<h3>
|
2025-03-19 22:08:56 +00:00
|
|
|
<a href="{{ route('article', ['article_slug' => $article->slug]) }}">
|
|
|
|
|
{{ $article->title }}
|
|
|
|
|
</a>
|
2025-03-19 21:40:54 +00:00
|
|
|
</h3>
|
2025-03-19 22:08:56 +00:00
|
|
|
<h4>
|
|
|
|
|
{{ $article->subtitle }}
|
|
|
|
|
</h4>
|
2025-03-19 21:40:54 +00:00
|
|
|
</article>
|
|
|
|
|
@empty
|
|
|
|
|
<div>No articles published yet. Check back soon!</div>
|
|
|
|
|
@endforelse
|
|
|
|
|
</section>
|
2024-08-04 19:07:03 +00:00
|
|
|
@endsection
|