simple-blog/source/_layouts/post.blade.php

13 lines
297 B
PHP

@extends('_layouts.main')
@section('body')
<article>
<section>
<h2>{{ $page->title }}</h2>
<small>{{ $page->dateTranslated($page->date) }}</small>
</section>
<section>
@yield('content')
</section>
</article>
@endsection