{% extends "cms/base.html" %} {% block title %}{{ page.title if page else '新建页面' }} - ARIFU CMS{% endblock %} {% set active='pages' %} {% block content %}

{{ '✏ 编辑页面' if page else '➕ 新建页面' }}

例如 products → 访问 /products/,留空自动从标题生成
{% if page %}
{% endif %}
{% if page %} 🧱 可视化构建 👁 预览 {% endif %} ← 返回列表
{% if page and blocks %}

🧱 内容区块 {{ blocks|length }}

使用「可视化构建器」拖拽排版更方便。

🧱 打开构建器
{% for b in blocks %}
⋮⋮
{{ b.type }}
{{ b.content[:80] if b.content else '(空)' }}
{% endfor %}
{% endif %} {% endblock %}