| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | <div class="news-featured">  <h3 class="post-block-title">    <span>Featured News</span>  </h3>  {{ range first 5 (where .Site.Pages "Params.type" "featured") }}  <div class="row align-items-center mb-3">    <div class="col-4">      <a href="{{ .Permalink }}">        <img class="img-fluid" src="{{ .Params.image | relURL }}" alt="" />      </a>    </div>    <div class="col-8 ps-0">      <section class="mt-0 news-info">        {{ range (.GetTerms "categories") }}        <a href="{{ .Permalink }}">{{ .LinkTitle }}</a>        {{ end }}        <small>{{ .Date | time.Format ":date_long" }}</small>      </section>      <h2 class="mt-1 post-title">        <a href="{{ .Params.url }}">{{ .Params.title }}</a>      </h2>    </div>  </div>  {{ end }}</div><!-- <div class="news-featured">  <h3 class="post-block-title">    <span>影音新聞</span>  </h3>    {{ range first 3 (where .Site.Pages "Params.type" "video") }}    <a href="{{ .Permalink }}">      <img class="img-fluid" src="{{ .Params.image | relURL }}" alt="" />    </a>    <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 mb-3">      <a href="{{ .Params.url }}">{{ .Params.title }}</a>    </h2>    {{ end }}  </div> -->
 |