category.blade.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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">1 page</h3>
  9. <h1 class="section-term">Example Category</h1>
  10. <h2 class="section-description">
  11. A description of this category
  12. </h2>
  13. </div>
  14. </div>
  15. </header>
  16. <section class="article-list--compact">
  17. @foreach ($posts as $post)
  18. <article>
  19. <a href="https://demo.stack.jimmycai.com/p/hello-world/">
  20. <div class="article-details">
  21. <h2 class="article-title">{{ $post->title }}</h2>
  22. <footer class="article-time">
  23. <time datetime="2022-03-06T00:00:00Z">{{ $post->formatted_updated_at }}</time>
  24. </footer>
  25. </div>
  26. <div class="article-image">
  27. <img
  28. src="./Category_ Example Category - Hugo Theme Stack Starter_files/cover_hu6307248181568134095.jpg"
  29. width="120"
  30. height="120"
  31. alt="Hello World"
  32. loading="lazy" />
  33. </div>
  34. </a>
  35. </article>
  36. @endforeach
  37. </section>
  38. @endsection