{% init recent_update_notes = xutils.call("page.list_recent_notes", 10) %}
最近更新
{% if len(recent_update_notes) == 0 %}

空空如也~

{% end %} {% for item in recent_update_notes %} {% if hasattr(item, "hide") and item.hide %} {% continue %} {% end %} {% if item.priority>0 %} {% end %} {{item.name}} {% if item.is_deleted %} 删除 {% end %}
{{item.update_date}}
{% end %}