29 lines
1.5 KiB
PHP
29 lines
1.5 KiB
PHP
<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>
|
|
<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>
|
|
<a href="/communities" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('communities*') ? 'bg-gray-700 text-white' : '' }}">
|
|
<i class="fas fa-users mr-3"></i>
|
|
Communities
|
|
</a>
|
|
<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>
|