category.blade.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @extends('blog.layouts.app')
  2. @section('title', $user["nickName"])
  3. @section('content')
  4. <header>
  5. <h3 class="section-title">Categories</h3>
  6. <div class="section-card">
  7. <div class="section-details">
  8. <h3 class="section-count">{{ $count }} page</h3>
  9. <h1 class="section-term">
  10. @foreach ($current as $category)
  11. /<a href="{{ route('category', ['user' => $user['userName'],'category1' => $category['id'],]) }}">
  12. {{ $category['label'] }}
  13. </a>
  14. @endforeach
  15. </h1>
  16. <section class="widget tagCloud">
  17. <div class="tagCloud-tags">
  18. @foreach($tagOptions as $id => $tag)
  19. <a href="{{ $tag['tag']->name }}">{{ $tag['tag']->name }}</a>
  20. @endforeach
  21. </div>
  22. </section>
  23. </div>
  24. </div>
  25. </header>
  26. <section class="article-list--compact">
  27. @foreach ($posts as $post)
  28. <article>
  29. <a href="{{ route('book.read', $post['uid']) }}">
  30. <div class="article-details">
  31. <h2 class="article-title">{{ $post->title }}</h2>
  32. <footer class="article-time">
  33. <time datetime="2022-03-06T00:00:00Z">{{ $post->formatted_updated_at }}</time>
  34. </footer>
  35. </div>
  36. <div class="article-image">
  37. <img
  38. src="./Category_ Example Category - Hugo Theme Stack Starter_files/cover_hu6307248181568134095.jpg"
  39. width="120"
  40. height="120"
  41. alt="Hello World"
  42. loading="lazy" />
  43. </div>
  44. </a>
  45. </article>
  46. @endforeach
  47. </section>
  48. @endsection