diff options
author | floppydiskette <git@diskfloppy.me> | 2024-08-08 02:00:44 +0100 |
---|---|---|
committer | floppydiskette <git@diskfloppy.me> | 2024-08-08 02:00:44 +0100 |
commit | e3f67fec07884b70e2a988ac0bb8cf6c9a750582 (patch) | |
tree | 280593edcd53a8789b4330e8aac708f1a34e3659 /resources/views/guestbook.blade.php | |
parent | 9900446d9590024c34f55a45055776a396fb694e (diff) |
Initial redesign commit
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> |