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

13 lines
297 B
PHP
Raw Normal View History

2022-05-22 07:15:41 +01:00
@extends('_layouts.main')
@section('body')
2022-05-22 09:05:29 +01:00
<article>
<section>
<h2>{{ $page->title }}</h2>
<small>{{ $page->dateTranslated($page->date) }}</small>
</section>
<section>
@yield('content')
</section>
</article>
2022-05-22 07:15:41 +01:00
@endsection