热门文章
热门文章展示效果:
代码展示:
#articles(count = 4)
#for(article:articles)
<div>
<a class="media-thumb" href="#(article.url)">
<img class="rounded" src="#(article.showImage ?? 'images/nothumbnail.jpg')">
<p class="media-body">#maxLength(article.title,28)</p>
</a>
</div>
#end
#end
其中
count = 4,表示显示4篇文章;
#maxLength(article.title,28),表示读取文章的标题,但是字数不超过28.