Initial Commit

This commit is contained in:
2026-01-07 15:46:00 +01:00
commit 7133af82e3
1454 changed files with 362274 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<div>
<div class="widget">
<h5 class="widget-title"><span>Kategorien</span></h5>
<ul class="list-unstyled widget-list">
@foreach (sidebar_categories() as $item)
<li><a href="{{ route('category_posts', $item->slug) }}" class="d-flex">
{{ $item->name }} <small class="ml-auto">({{ $item->posts->count() }})</small></a>
</li>
@endforeach
</ul>
</div>
</div>