index.blade.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {{-- resources/views/blog/index.blade.php --}}
  2. @extends('blog.layouts.app')
  3. @section('title', $user['nickName'])
  4. @section('content')
  5. <section class="article-list">
  6. @forelse($posts as $post)
  7. <article class="{{ !empty($post->cover) ? 'has-image' : '' }}">
  8. <header class="article-header">
  9. @if(!empty($post->cover))
  10. <div class="article-image">
  11. <a href="{{ route('library.tipitaka.read', ['id' => $post['uid']]) }}">
  12. <img src="{{ $post->cover }}"
  13. width="800" height="450"
  14. loading="lazy"
  15. alt="{{ $post->title }}" />
  16. </a>
  17. </div>
  18. @endif
  19. <div class="article-details">
  20. @if(!empty($post->categories))
  21. <header class="article-category">
  22. @foreach($post->categories as $category)
  23. <a href="{{ route('blog.category', ['user' => $user['userName'], 'category1' => $category['id']]) }}">
  24. {{ $category['label'] }}
  25. </a>
  26. @endforeach
  27. </header>
  28. @endif
  29. <div class="article-title-wrapper">
  30. <h2 class="article-title">
  31. <a href="{{ route('library.tipitaka.read', ['id' => $post['uid']]) }}">
  32. {{ $post->title }}
  33. </a>
  34. </h2>
  35. @if(!empty($post->summary))
  36. <h3 class="article-subtitle">{{ $post->summary }}</h3>
  37. @endif
  38. </div>
  39. <footer class="article-time">
  40. <div>
  41. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time"
  42. width="24" height="24" viewBox="0 0 24 24" stroke-width="2"
  43. stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
  44. <path stroke="none" d="M0 0h24v24H0z"></path>
  45. <path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"></path>
  46. <circle cx="18" cy="18" r="4"></circle>
  47. <path d="M15 3v4"></path>
  48. <path d="M7 3v4"></path>
  49. <path d="M3 11h16"></path>
  50. <path d="M18 16.496v1.504l1 1"></path>
  51. </svg>
  52. <time>{{ $post->formatted_updated_at }}</time>
  53. </div>
  54. </footer>
  55. </div>
  56. </header>
  57. </article>
  58. @empty
  59. <div class="not-found-card">
  60. <p>暂无文章</p>
  61. </div>
  62. @endforelse
  63. </section>
  64. @endsection