{% extends "base.html" %} {% block title %} 主页 {% endblock %} {% block style %} {{ super() }} {% endblock %} {% block context %}
{% for info in conf['describe-info'] %}

{{ info[0] }}

{{ info[1] | safe }} {% endfor %} {% for link in conf['describe-link'] %} {{ link }} {% endfor %}
{% if current_user.check_role("ReadBlog") %} {# 检查是否具有读取权限 #} {% if current_user.check_role("ReadMsg") %} {% else %} {% endif %} {% endif %} {% if current_user.check_role("ReadMsg") %} {# 检查是否具有读取权限 #} {% if current_user.check_role("ReadBlog") %} {% else %} {% endif %} {% endif %}
{% endblock %}