You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
35 lines
1.4 KiB
35 lines
1.4 KiB
<nav class="flex flex-col justify-between w-fit h-full bg-white border-black pb-10 px-1 |
|
dark:bg-black border-r dark:border-white"> |
|
<a href="/" class="w-full flex justify-center mb-12"> |
|
<img class="size-[6rem] mx-auto" src="/img/blog_logo.webp"> |
|
</a> |
|
<div class="w-full flex flex-col justify-between"> |
|
<ul class="flex flex-col w-full mb-10"> |
|
@if(request()->user()) |
|
@include('base.icon', [ |
|
"icon" => "create_icon.svg", |
|
"link" => "/blog/create" |
|
]) |
|
@endif |
|
@if(request()->user()) |
|
@include('base.icon', [ |
|
"icon" => "profile_icon.svg", |
|
"link" => "/myprofile" |
|
]) |
|
@include('base.icon', [ |
|
"icon" => "signout_icon.svg", |
|
"link" => "/logout" |
|
]) |
|
@else |
|
@include('base.icon', [ |
|
"icon" => "register_icon.svg", |
|
"link" => "/register" |
|
]) |
|
@include('base.icon', [ |
|
"icon" => "signin_icon.svg", |
|
"link" => "/login" |
|
]) |
|
@endif |
|
</ul> |
|
</div> |
|
</nav> |