simple-blog/source/_layouts/post.blade.php
2022-05-22 08:15:41 +02:00

7 lines
No EOL
170 B
PHP

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