123456789101112131415161718192021222324252627282930 |
- <h3 class="post-block-title">
- <span>更多新聞</span>
- </h3>
- <div class="row news-all">
- {{ range $index, $element := (where site.RegularPages "Type" "post") | first 10 }}
- <div class="col-12 col-lg-6">
- <article>
- <a href="{{ .Permalink }}">
- <img class="img-fluid first-img" 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">
- <a href="{{ .Params.url }}">{{ .Params.title }}</a>
- </h2>
- <p class="post-depiction">
- <a href="{{ .Permalink }}">{{ .Summary }}</a>
- </p>
- <hr>
- </article>
- </div>
- {{ end }}
- </div>
|