2023-03-21 13:54:36 +08:00
|
|
|
<#include "templates/layout_pjax.ftl">
|
2023-03-21 10:49:35 +08:00
|
|
|
<#global is_first_index=(posts.number == 0) >
|
|
|
|
<@layout title="${blog_title!}" canonical="${blog_url!}">
|
|
|
|
<#if posts.content?? && posts.content?size gt 0>
|
2023-03-21 13:54:36 +08:00
|
|
|
<#include "templates/main/article_list.ftl">
|
2023-03-21 10:49:35 +08:00
|
|
|
<@article_list posts.content/>
|
2023-03-21 13:54:36 +08:00
|
|
|
<#include "templates/main/pagination.ftl">
|
2023-03-21 10:49:35 +08:00
|
|
|
<@pagination method="index" datas=posts display="${settings.page_number!5}" />
|
|
|
|
<#else>
|
|
|
|
<div class="card card-empty">
|
|
|
|
<i class="fa fa-inbox"></i>
|
|
|
|
还没有发表过文章
|
|
|
|
</div>
|
|
|
|
</#if>
|
|
|
|
</@layout>
|