focus.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <div class="focus-content">
  2. <h3 class="post-block-title">
  3. <span>焦點新聞</span>
  4. </h3>
  5. {{ range first 3 (where .Site.Pages "Params.type" "focus") }}
  6. <a href="{{ .Permalink }}">
  7. <img class="img-fluid" src="{{ .Params.image | relURL }}" alt="" />
  8. </a>
  9. <section class="news-info">
  10. {{ range (.GetTerms "categories") }}
  11. <a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
  12. {{ end }}
  13. <small>{{ .Date | time.Format ":date_long" }}</small>
  14. </section>
  15. <h2 class="post-title mb-3">
  16. <a href="{{ .Permalink }}">{{ .Params.title }}</a>
  17. </h2>
  18. {{ end }}
  19. <!-- {{ $t := $.Site.GetPage "/focus" }}
  20. {{ range $index, $element := first 3 ( where $t.Pages "Params.display" true) }}
  21. <a href="{{ .Permalink }}">
  22. <img class="img-fluid" src="{{ .Params.image | relURL }}" alt="" />
  23. </a>
  24. <section class="news-info">
  25. {{ range (.GetTerms "categories") }}
  26. <a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
  27. {{ end }}
  28. <small>{{ .Date | time.Format ":date_long" }}</small>
  29. </section>
  30. <h2 class="post-title mb-3">
  31. <a href="{{ .Permalink }}">{{ .Params.title }}</a>
  32. </h2>
  33. {{ end }} -->
  34. </div>