@extends('master') @section('css') @endsection @section('content')

Welcome to the Rosewood Pet Blog!

@if (!empty($current_post))
@if ($current_post->image) {{ $current_post->title }}
@endif

{{ $current_post->title }}

{!! $current_post->content !!}

Recent article

@if ($posts->isEmpty()) {{ $empty_message }} @else @foreach ($posts->chunk(6) as $chunk) @foreach ($chunk as $post) @endforeach @endforeach @endif
@else

Quick search

Category

@foreach ($blogcategories as $blogcategory)
{{ $blogcategory->title }}
@endforeach

Archive

@foreach ($archive as $archive_year=>$archive_months)
{{ $archive_year }} @if ($archive_year == $current_year) @endif
@endforeach
@if ($posts->isEmpty()) {{ $empty_message }} @else @foreach ($posts as $post)
@if ($post->image) {{ $post->title }} @endif
{!! strtoupper(date('d F Y',strtotime($post->date))) !!}

{{ $post->title }}

{{ $post->summary }}

@endforeach @endif
@endif

Order a catalogue Become a stockist
@endsection