news-all.html 841 B

123456789101112131415161718192021222324252627282930
  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. <div class="col-12 col-lg-6">
  7. <article>
  8. <a href="{{ .Permalink }}">
  9. <img class="img-fluid first-img" src="{{ .Params.image | relURL }}" alt="" />
  10. </a>
  11. <section class="news-info">
  12. {{ range (.GetTerms "categories") }}
  13. <a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
  14. {{ end }}
  15. <small>{{ .Date | time.Format ":date_long" }}</small>
  16. </section>
  17. <h2 class="post-title">
  18. <a href="{{ .Params.url }}">{{ .Params.title }}</a>
  19. </h2>
  20. <p class="post-depiction">
  21. <a href="{{ .Permalink }}">{{ .Summary }}</a>
  22. </p>
  23. <hr>
  24. </article>
  25. </div>
  26. {{ end }}
  27. </div>