2
0

header.blade.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {{-- api-v12/resources/views/components/library/header.blade.php --}}
  2. <div class="anthology-breadcrumb-bar">
  3. <div class="container-xl">
  4. <div class="bc-inner">
  5. <ol class="breadcrumb mb-0">
  6. @yield('breadcrumb')
  7. </ol>
  8. <ul class="bc-nav">
  9. <li><a href="{{ route('library.home') }}">首页</a></li>
  10. <li><a href="{{ route('library.wiki.home') }}">百科</a></li>
  11. <li><a href="{{ route('library.anthology.index') }}">文集</a></li>
  12. <li><a href="{{ route('library.download') }}">下载</a></li>
  13. @auth
  14. <li><a href="#">我的账户</a></li>
  15. @else
  16. <li><a href="#">注册/登录</a></li>
  17. @endauth
  18. <li>
  19. <x-language-switcher />
  20. </li>
  21. </ul>
  22. <button class="bc-hamburger" id="bcHamburger">
  23. <i class="ti ti-menu-2"></i>
  24. </button>
  25. </div>
  26. </div>
  27. </div>
  28. <div class="bc-mobile-overlay" id="bcOverlay"></div>
  29. <div class="bc-mobile-drawer" id="bcDrawer">
  30. <div class="bc-mobile-drawer-header">
  31. <span>导航</span>
  32. <button class="bc-mobile-drawer-close" id="bcDrawerClose">
  33. <i class="ti ti-x"></i>
  34. </button>
  35. </div>
  36. <ul class="bc-mobile-nav">
  37. <li><a href="{{ route('library.home') }}">首页</a></li>
  38. <li><a href="{{ route('library.wiki.home') }}">百科</a></li>
  39. <li><a href="{{ route('library.anthology.index') }}">文集</a></li>
  40. <li><a href="{{ route('library.download') }}">下载</a></li>
  41. @auth
  42. <li><a href="#">我的账户</a></li>
  43. @else
  44. <li><a href="#">注册/登录</a></li>
  45. @endauth
  46. <li style="padding:1rem 1.25rem;">
  47. <x-language-switcher />
  48. </li>
  49. </ul>
  50. </div>