@extends('index') @section('content')

{{ __('web.HOME_BLOG') }}

@foreach($posts as $index => $post) @if($post->fixed)
{{ $post->title }}
@if($post->getFirstMediaUrl('artwork'))
{{ $post->title }}
@endif

{!! $post->short_content !!}

Read More
@else
@if($post->getFirstMediaUrl('artwork'))
{{ $post->title }}
@endif
{{ $post->title }}
{{ \Carbon\Carbon::parse($post->created_at)->format('F j Y') }} @foreach($post->categories as $category)@if(!$loop->last), @endif @endforeach

{!! $post->short_content !!}

@endif @endforeach
{!! Advert::get('sidebar') !!} @include('post.widget.categories', ['categories' => $categories]) @include('post.widget.archives', ['archives' => $archives]) @include('post.widget.tags', ['tags' => $tags])
@endsection