热门文章

热门文章展示效果:

热门文章 - 图1

代码展示:

  1. #articles(count = 4)
  2. #for(article:articles)
  3. <div>
  4. <a class="media-thumb" href="#(article.url)">
  5. <img class="rounded" src="#(article.showImage ?? 'images/nothumbnail.jpg')">
  6. <p class="media-body">#maxLength(article.title,28)</p>
  7. </a>
  8. </div>
  9. #end
  10. #end

其中

  1. count = 4,表示显示4篇文章;
  1. #maxLength(article.title,28),表示读取文章的标题,但是字数不超过28.