diff options
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 + |
