recent.html 987 B

1234567891011121314151617181920212223242526272829
  1. {{ $num_recent_posts := default 7 .Site.Params.sidebar.num_recent_posts }}
  2. {{ $posts := first $num_recent_posts (where .Site.RegularPages "Section" "in" .Site.Params.mainSections) }}
  3. {{ if gt (len $posts) 0 }}
  4. <section class="recent-content">
  5. <h3 class="post-block-title">
  6. <span>最新消息</span>
  7. </h3>
  8. <ol class="list-unstyled news-list">
  9. {{ range $posts }}
  10. <li class="d-flex align-items-center">
  11. <a href="{{.RelPermalink}}">
  12. <img src="{{ .Params.image | relURL }}" alt="">
  13. </a>
  14. <div class="ms-2">
  15. <section class="news-info">
  16. {{ range (.GetTerms "categories") }}
  17. <a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
  18. {{ end }}
  19. <small>{{ .Date | time.Format ":date_long" }}</small>
  20. </section>
  21. <h2 class="post-title">
  22. <a href="{{ .Permalink }}" class="line-clamp"> {{.Title | markdownify }}</a>
  23. </h2>
  24. </div>
  25. </li>
  26. {{ end }}
  27. </ol>
  28. </section>
  29. {{ end }}