diff options
author | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:35:48 +0100 |
---|---|---|
committer | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:35:48 +0100 |
commit | 74bca7ac803aeea3d5091344b99520687e3a3bd1 (patch) | |
tree | 8a63a2341303daac4ac621f8f4962a81d684e88a /resources/views/guestbook.blade.php | |
parent | 9900446d9590024c34f55a45055776a396fb694e (diff) | |
parent | 14d3ed966bbafbcb01182df26fbbe1d5a211f4c2 (diff) |
Merge branch 'redesign'
Diffstat (limited to 'resources/views/guestbook.blade.php')
-rw-r--r-- | resources/views/guestbook.blade.php | 32 |
1 files changed, 14 insertions, 18 deletions
diff --git a/resources/views/guestbook.blade.php b/resources/views/guestbook.blade.php index bed4211..f9f04ca 100644 --- a/resources/views/guestbook.blade.php +++ b/resources/views/guestbook.blade.php @@ -56,24 +56,20 @@ @php $user_agent = $parser->parse($entry->agent); @endphp - <table class="gb-entry" role="presentation"> - <tr> - <td> - Submitted by <strong>{{ $entry->name }}</strong> - on <strong>{{ $entry->created_at->format('Y-m-d') }}</strong> - at <strong>{{ $entry->created_at->format('h:i:s A (e)') }}</strong> - <hr> - <span class="guestbook-message">{{ $entry->message }}</span> - <hr> - @if($entry->agent === "Agent Unavailable") - <address>Agent unavailable</address> - @else - <address>Posted using <strong>{{ $user_agent->ua->toString() }}</strong> - on <strong>{{ $user_agent->os->toString() }}</strong></address> - @endif - </td> - </tr> - </table> + <div class="section"> + Submitted by <strong>{{ $entry->name }}</strong> + on <strong>{{ $entry->created_at->format('Y-m-d') }}</strong> + at <strong>{{ $entry->created_at->format('h:i:s A (e)') }}</strong> + <hr> + <span class="guestbook-message">{{ $entry->message }}</span> + <hr> + @if($entry->agent === "Agent Unavailable") + <address>Agent unavailable</address> + @else + <address>Posted using <strong>{{ $user_agent->ua->toString() }}</strong> + on <strong>{{ $user_agent->os->toString() }}</strong></address> + @endif + </div> <br> @endforeach </x-layout> |