Stop using layout tables on bookmarks page

This commit is contained in:
floppydiskette 2024-07-12 23:51:50 +01:00
parent 5ed8fdc83e
commit 9900446d95
Signed by: fwoppydwisk
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE

View file

@ -1,18 +1,14 @@
<x-layout>
<x-slot:title>Bookmarks</x-slot:title>
@foreach($categories as $category)
<table class="info-table" role="presentation">
<caption>
<h2>{{ $category->name }}</h2>
<hr>
</caption>
<tbody>
<div class="info-section">
<h2>{{ $category->name }}</h2>
<hr>
<ul>
@foreach($category->sites as $site)
<tr>
<td><a href="{{ $site->url }}">{{ $site->name }}</a> - {{ $site->description }}</td>
</tr>
<li><a href="{{ $site->url }}">{{ $site->name }}</a> - {{ $site->description }}</li>
@endforeach
</tbody>
</table>
</ul>
</div>
@endforeach
</x-layout>