{% extends "cms/base.html" %} {% block title %}全站设置 - ARIFU CMS{% endblock %} {% set active='settings' %} {% block content %}

⚙️ 全站设置

🌐 网站信息

🔍 SEO / 收录设置

用于主动推送页面给百度收录,提升SEO效果
">

📄 默认 SEO(用于未单独设置SEO的页面)

自动追加到每个页面的 末尾</div> </div> <div class="form-group"> <label>默认 Meta Description</label> <input type="text" data-setting="default_meta_desc" class="form-control" value="{{ default_meta_desc or '' }}"> </div> </div> <div style="margin-top:24px;"> <button class="btn btn-primary" onclick="saveSettings()">💾 保存所有设置</button> </div> </div> <!-- 当前设置值(隐藏,用于回填) --> <div class="card" style="margin-top:16px;"> <h2>📋 当前设置值</h2> <table> <tr><th>键</th><th>值</th><th>操作</th></tr> {% for k, v in all_settings.items() %} <tr> <td style="font-family:monospace;font-size:12px;color:var(--blue);">{{ k }}</td> <td style="font-size:12px;max-width:400px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;">{{ v }}</td> <td><button class="btn btn-sm btn-danger" onclick="resetSetting('{{ k }}')">重置</button></td> </tr> {% endfor %} </table> </div> {% endblock %}