fedi-feed-router/resources/views/partials/sidebar.blade.php

26 lines
1.3 KiB
PHP
Raw Normal View History

2025-07-05 01:17:24 +02:00
<!-- Sidebar -->
<div class="bg-gray-800 text-white w-64 flex-shrink-0">
<div class="p-4">
<h2 class="text-xl font-bold">Lemmy Poster</h2>
<p class="text-gray-400 text-sm">Admin Panel</p>
</div>
<nav class="mt-8">
<a href="/articles" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('articles') ? 'bg-gray-700 text-white' : '' }}">
<i class="fas fa-newspaper mr-3"></i>
Articles
</a>
2025-07-05 01:55:53 +02:00
<a href="/platforms" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('platforms*') ? 'bg-gray-700 text-white' : '' }}">
<i class="fas fa-share-alt mr-3"></i>
Platforms
</a>
2025-07-05 01:17:24 +02:00
<a href="/logs" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('logs') ? 'bg-gray-700 text-white' : '' }}">
<i class="fas fa-list mr-3"></i>
Logs
</a>
<a href="/horizon" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors">
<i class="fas fa-chart-line mr-3"></i>
Queue Monitor
</a>
</nav>
</div>