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

7 lines
170 B
PHP
Raw Normal View History

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