通常在主頁上,您沒有分頁。您可以通過指向博客頁面的鏈接顯示最後4篇文章
使用blogPosts組件可以在頁面上顯示最新博文的列表。
見documantation這裏:https://octobercms.com/plugin/rainlab-blog
title = "Accueil"
url = "/"
layout = "default"
is_hidden = 0
[blogPosts]
pageNumber = "{{ :page }}"
postsPerPage = 4
noPostsMessage = "No posts found"
sortOrder = "published_at desc"
categoryPage = "actualite"
postPage = "blog-detail"
==
{% set posts = blogPosts.posts %}
{% for post in posts %}
<div class="col-sm-3 col-xs-6">
<figure>
<a href="{{ post.url }}"><img
data-src="{{ first.filename }}"
src="{{ post.featured_images[0].thumb(250, 166) }}"
alt="{{ first.description }}"
/></a>
<figcaption class="bordered no-top-border">
<div class="info">
<h5><a href="{{ post.url }}">{{ post.title }}</a></h5>
<p class="info">
{{ post.published_at|date('d.m.Y') }}
</p>
</div><!-- /.info -->
</figcaption>
</figure>
</div><!-- /.col -->
{% endfor %}
<a href="{{ 'blog'|page }}">All blog posts</a>
我希望這可以幫助你
是很常見的人誰是新的現場提問,然後永遠不會接受一個答案。結果,他們的新問題往往被忽略。名譽點是這個網站的貨幣,接受一個答案就像給服務員/服務員小費:-)如果解決你的問題,請驗證我的anwser –