recent_posts.html 547 B

12345678910111213141516
  1. <div class="widget widget-latest-post">
  2. <h4 class="widget-title">最新文章</h4>
  3. {{ range first 4 (where site.Pages "Type" "blog") }}
  4. <div class="media">
  5. <div class="mb-3">
  6. <a href="{{ .Permalink }}">
  7. <img class="img-fluid" src="{{ .Params.Image | relURL }}" alt="{{ .Title }}">
  8. </a>
  9. </div>
  10. <div class="media-body">
  11. <h4 class="media-heading"><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
  12. <p>{{ .Summary | truncate 40 }}</p>
  13. </div>
  14. </div>
  15. {{ end }}
  16. </div>