header.blade.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <li>
  14. <x-language-switcher />
  15. </li>
  16. </ul>
  17. <button class="bc-hamburger" id="bcHamburger">
  18. <i class="ti ti-menu-2"></i>
  19. </button>
  20. </div>
  21. </div>
  22. </div>
  23. <div class="bc-mobile-overlay" id="bcOverlay"></div>
  24. <div class="bc-mobile-drawer" id="bcDrawer">
  25. <div class="bc-mobile-drawer-header">
  26. <span>导航</span>
  27. <button class="bc-mobile-drawer-close" id="bcDrawerClose">
  28. <i class="ti ti-x"></i>
  29. </button>
  30. </div>
  31. <ul class="bc-mobile-nav">
  32. <li><a href="{{ route('library.home') }}">首页</a></li>
  33. <li><a href="{{ route('library.wiki.home') }}">百科</a></li>
  34. <li><a href="{{ route('library.anthology.index') }}">文集</a></li>
  35. <li><a href="{{ route('library.download') }}">下载</a></li>
  36. <li style="padding:1rem 1.25rem;">
  37. <x-language-switcher />
  38. </li>
  39. </ul>
  40. </div>