news.html 579 B

12345678910111213141516
  1. {{ $t := $.Site.GetPage "/news" }}
  2. {{ range $index, $element := first 1 ( where $t.Pages "Params.draft" false) }}
  3. <section class="news-info">
  4. {{ range (.GetTerms "categories") }}
  5. <a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
  6. {{ end }}
  7. <small>{{ .Date | time.Format ":date_long" }}</small>
  8. </section>
  9. <h2 class="post-title">
  10. <a href="{{ .Params.url }}">{{ .Params.title }}</a>
  11. </h2>
  12. <a href="{{ .Permalink }}">
  13. <img class="img-fluid" src="{{ .Params.image | relURL }}" alt="" />
  14. </a>
  15. {{ end }}