{% load i18n static %} {# 获取语言设置 由i18n提供 #} {% get_current_language as LANGUAGE_CODE %} {# 获取语音方向 由i18n提供 #} {% get_current_language_bidi as LANGUAGE_BIDI %} {# 标题 在浏览器标签页显示 #} {% block title %}{% endblock %} {% include 'luckyui/includes/css-part.html' %} {% include 'luckyui/includes/js-part.html' %} {# 额外的头部block #} {% block extrahead %}{% endblock %} {% if LANGUAGE_BIDI %} {% endif %} {# 移动设备优化 #} {% block responsive %} {% if LANGUAGE_BIDI %} {% endif %} {% endblock %} {% block blockbots %} {# 内部页面,一般不需要被外部搜索 #} {# 搜索引擎的爬虫 noindex:不要将此页面包含在搜索结果中。noarchive:不要创建或显示此页面的缓存副本。 #} {% endblock %} {# 内容区 #}
{% block content %} {% endblock %}
{# 脚部区域 #} {% block footer %} {% endblock %}