@extends('layouts.home')
@section('title', $title)
@section('keywords', config('bjyblog.head.keywords'))
@section('description', config('bjyblog.head.description'))
@section('content')
@if(Str::isTrue(config('bjyblog.breadcrumb')))
{{ Breadcrumbs::render() }}
@endif
@foreach($notes as $index => $note)
@if($index % 2 == 0)
- {{ $note->created_at }}
- {{ $note->content }}
@endif
@endforeach
@foreach($notes as $index => $note)
@if($index % 2 == 1)
- {{ $note->created_at }}
- {{ $note->content }}
@endif
@endforeach
@endsection