index.blade.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {{-- resources/views/library/index.blade.php
  2. Library 门户首页。
  3. --}}
  4. @extends('layouts.library')
  5. @section('title', __('library.site_name'))
  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">{{ __('library.site_name') }}</h1>
  12. <p class="hero-subtitle">{{ __('library.portal_hero_subtitle') }}</p>
  13. <div class="search-box">
  14. <x-ui.search-input
  15. :placeholder="__('library.search_tipitaka')"
  16. size="lg"
  17. />
  18. </div>
  19. </div>
  20. </section>
  21. @endsection
  22. @section('content')
  23. <div class="page-body">
  24. <div class="container-xl">
  25. {{-- 分类卡片 --}}
  26. <div class="row g-4 mt-1">
  27. @foreach($categoryData as $data)
  28. <div class="col-12 col-md-6 col-lg-3">
  29. <div class="wiki-card h-100">
  30. <div class="wiki-sidebar-title" style="margin-bottom: 0.75rem;">
  31. <i class="ti ti-book me-1"></i>
  32. {{ $data['category']['name'] }}
  33. <a href="{{ route('library.tipitaka.category', ['id' => $data['category']['id']]) }}"
  34. class="btn btn-sm btn-primary ms-auto" style="float:right; font-size: 0.75rem;">
  35. {{ __('library.more') }} <i class="ti ti-arrow-right"></i>
  36. </a>
  37. </div>
  38. <ul class="wiki-cat-list">
  39. @foreach($data['children'] as $child)
  40. <li>
  41. <a href="{{ route('library.tipitaka.category', ['id' => $child['id']]) }}">
  42. {{ $child['name'] }}
  43. </a>
  44. </li>
  45. @endforeach
  46. </ul>
  47. </div>
  48. </div>
  49. @endforeach
  50. </div>
  51. {{-- 最近更新 --}}
  52. @isset($update)
  53. <div class="wiki-card mt-4">
  54. <div class="wiki-sidebar-title" style="margin-bottom: 1rem;">{{ __('library.recent_updates') }}</div>
  55. <x-ui.book-grid :books="$update" />
  56. </div>
  57. @endisset
  58. </div>
  59. </div>
  60. @endsection