header.blade.php 1.7 KB

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