news-all.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <h3 class="post-block-title">
  2. <span>更多新聞</span>
  3. </h3>
  4. <div class="row news-all">
  5. {{ range $index, $element := (where site.RegularPages "Type" "post") | first 10 }}
  6. {{ if (eq $index 0) }}
  7. <div class="col-12">
  8. <article>
  9. <a href="{{ .Permalink }}">
  10. <img class="img-fluid first-img" src="{{ .Params.image | relURL }}" alt="" />
  11. </a>
  12. <section class="news-info">
  13. {{ range (.GetTerms "categories") }}
  14. <a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
  15. {{ end }}
  16. <small>{{ .Date | time.Format ":date_long" }}</small>
  17. </section>
  18. <h2 class="post-title">
  19. <a href="{{ .Params.url }}">{{ .Params.title }}</a>
  20. </h2>
  21. <p class="post-depiction">
  22. <a href="{{ .Permalink }}">{{ .Summary }}</a>
  23. </p>
  24. <hr>
  25. </article>
  26. </div>
  27. {{ else }}
  28. <div class="col-12">
  29. <div class="row align-items-center">
  30. <div class="col-12 col-sm-6">
  31. <a href="{{ .Permalink }}">
  32. <img class="img-fluid" src="{{ .Params.image | relURL }}" alt="" />
  33. </a>
  34. </div>
  35. <div class="col-12 col-sm-6">
  36. <article>
  37. <section class="news-info">
  38. {{ range (.GetTerms "categories") }}
  39. <a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
  40. {{ end }}
  41. <small>{{ .Date | time.Format ":date_long" }}</small>
  42. </section>
  43. <h2 class="post-title">
  44. <a href="{{ .Params.url }}">{{ .Params.title }}</a>
  45. </h2>
  46. </article>
  47. </div>
  48. <span class="line">
  49. <hr>
  50. </span>
  51. </div>
  52. </div>
  53. {{ end }}
  54. {{ end }}
  55. </div>