@extends('_layouts.master') @section('page-classes') page-white post @endsection @section('contents')
{!! $page->blog_rsp($page->feature, date('Y-m-d', $page->date) , $page->title) !!}

{{ $page->title }}

{{ date('d/m/Y', $page->date) }}

{{--

By definition, social media allows for connection and communication. There’s no question that those are great things - we need those things more than ever - but it could be that we’re all doing them wrong.

--}}
@yield('content')
@if ($page->getPrevious())

Read the previous post: {{ $page->getPrevious()->title }}

@endif @if ($page->getNext())

Read the next post: {{ $page->getNext()->title }}

@endif
@endsection