blob: 6d8fa30345ea323ad3a790a8c2ec1e431a254112 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@extends('_layouts.master')
@section('article')
<header>
<h1 class="text-green-300 text-4xl font-bold">{{$page->title }}</h1>
<h2 class="text-2xl text-gray-300">{{ $page->description }}</h2>
<time class="" datetime="{{ $page->getDate()->format('Y-m-d') }}">
{{ $page->getDate()->format('M d, Y') }}
</time>
</header>
@yield('content')
@endsection
|