| 12345678910111213141516 | 
    {{ $t := $.Site.GetPage "/news" }}    {{ range $index, $element := first 1 ( where $t.Pages "Params.draft" false) }}    <section class="news-info">        {{ range (.GetTerms "categories") }}        <a href="{{ .Permalink }}">{{ .LinkTitle }}</a>        {{ end }}        <small>{{ .Date | time.Format ":date_long" }}</small>    </section>    <h2 class="post-title">        <a href="{{ .Params.url }}">{{ .Params.title }}</a>    </h2>    <a href="{{ .Permalink }}">        <img class="img-fluid" src="{{ .Params.image | relURL }}" alt="" />    </a>    {{ end }}
 |