mirror of
https://ghfast.top/https://github.com/zsjy/halo-theme-dream2.0-plus.git
synced 2025-03-15 02:43:08 +08:00
15 lines
581 B
Plaintext
15 lines
581 B
Plaintext
<#include "template/layout.ftl">
|
|
<#global is_first_index=(posts.number == 0) >
|
|
<@layout title="${blog_title!}" canonical="${blog_url!}">
|
|
<#if posts.content?? && posts.content?size gt 0>
|
|
<#include "template/main/article_list.ftl">
|
|
<@article_list posts.content/>
|
|
<#include "template/main/pagination.ftl">
|
|
<@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> |