index.blade.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {{-- resources/views/library/index.blade.php
  2. Library 门户首页。
  3. --}}
  4. @extends('layouts.library')
  5. @section('title', '巴利书库')
  6. @section('hero')
  7. <section class="hero-section"
  8. style="background-image: url('{{ URL::asset('assets/images/hero-2.jpg') }}')">
  9. <div class="hero-overlay"></div>
  10. <div class="hero-content">
  11. <h1 class="hero-title">巴利书库</h1>
  12. <p class="hero-subtitle">探索 WikiPāli,开启智慧之门</p>
  13. <div class="search-box">
  14. <x-ui.search-input
  15. :action="route('library.search')"
  16. placeholder="搜索图书、作者或主题…"
  17. size="lg"
  18. />
  19. </div>
  20. </div>
  21. </section>
  22. @endsection
  23. @section('content')
  24. <div class="page-body">
  25. <div class="container-xl">
  26. {{-- 分类卡片 --}}
  27. <div class="row g-4 mt-1">
  28. @foreach($categoryData as $data)
  29. <div class="col-12 col-md-6 col-lg-3">
  30. <div class="wiki-card h-100">
  31. <div class="wiki-sidebar-title" style="margin-bottom: 0.75rem;">
  32. <i class="ti ti-book me-1"></i>
  33. {{ $data['category']['name'] }}
  34. <a href="{{ route('library.tipitaka.category', ['id' => $data['category']['id']]) }}"
  35. class="btn btn-sm btn-primary ms-auto" style="float:right; font-size: 0.75rem;">
  36. 更多 <i class="ti ti-arrow-right"></i>
  37. </a>
  38. </div>
  39. <ul class="wiki-cat-list">
  40. @foreach($data['children'] as $child)
  41. <li>
  42. <a href="{{ route('library.tipitaka.category', ['id' => $child['id']]) }}">
  43. {{ $child['name'] }}
  44. </a>
  45. </li>
  46. @endforeach
  47. </ul>
  48. </div>
  49. </div>
  50. @endforeach
  51. </div>
  52. {{-- 最近更新 --}}
  53. @isset($update)
  54. <div class="wiki-card mt-4">
  55. <div class="wiki-sidebar-title" style="margin-bottom: 1rem;">最近更新</div>
  56. <x-ui.book-grid :books="$update" />
  57. </div>
  58. @endisset
  59. </div>
  60. </div>
  61. @endsection