说明:用于获取下一篇文档数据
使用方法:{% nextArchive 变量名称 %}
如将变量定义为 next {% nextArchive next %}...{% endnextArchive %}
nextArchive
不支持参数。
Id
Title
Link
Keywords
Description
CategoryId
Views
Logo
Thumb
CommentCount
CreatedTime
UpdatedTime
{% nextArchive next %}
下一篇:
{% if next %}
<a href="{{next.Link}}">{{next.Title}}</a>
{% else %}
没有了
{% endif %}
{% endnextArchive %}
{% nextArchive next %}
上一篇:
{% if next %}
<a href="{{next.Link}}">
<img src="{{next.Thumb}}" />
<span>{{next.Title}}</span>
</a>
{% else %}
没有了
{% endif %}
{% endnextArchive %}