post.html 832 B

1234567891011121314151617181920212223
  1. <div class="row">
  2. {{ range first 1 (where .Site.Pages "Params.type" "post") }}
  3. <div class="col-lg-4">
  4. <a href="{{ .Permalink }}">
  5. <img class="img-fluid" src="{{ .Params.image | relURL }}" alt="" />
  6. </a>
  7. <div>
  8. <h2 class="post-title my-lg-3">
  9. <a href="{{ .Params.url }}">{{ .Params.title }}</a>
  10. </h2>
  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. </div>
  18. <p class="post-depiction">
  19. <a href="{{ .Params.url }}" style="color:#000;">{{ .Summary }}</a>
  20. </p>
  21. </div>
  22. {{ end }}
  23. </div>