diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2020-03-07 20:50:44 +0000 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2020-03-07 20:50:44 +0000 |
| commit | 9d7bf4de4d22933cabe28aef6a3cf0d7414f6be2 (patch) | |
| tree | ce9fe3097036899afbec2d97236a50082699ba64 /source/_layouts/post.blade.php | |
| parent | 9240b4b969758bf2e73d8e4f6bc3fc92e611f32a (diff) | |
Responsive grid layout
Diffstat (limited to 'source/_layouts/post.blade.php')
| -rw-r--r-- | source/_layouts/post.blade.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source/_layouts/post.blade.php b/source/_layouts/post.blade.php index 6d8fa30..0c82477 100644 --- a/source/_layouts/post.blade.php +++ b/source/_layouts/post.blade.php @@ -2,11 +2,12 @@ @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') }}"> + <h1>{{$page->title }}</h1> + <h2>{{ $page->description }}</h2> + <time datetime="{{ $page->getDate()->format('Y-m-d') }}"> {{ $page->getDate()->format('M d, Y') }} </time> </header> @yield('content') @endsection + |
