cube-studio/myapp/templates/mybase.html
2021-08-17 17:00:34 +08:00

19 lines
589 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'appbuilder/baselayout.html' %}
{#引入自定义css#}
{% block head_css %}
{{ super() }}
<link rel="stylesheet" href="{{url_for('static',filename='css/your_css_file.css')}}"></link>
{% endblock %}
{# 在模板首部导入js文件使用 head_js #}
{% block head_js %}
{{ super() }}
<script src="{{url_for('static',filename='js/your_js_file.js')}}"></script>
{% endblock %}
{# 在模板末尾导入js文件使用tail_js#}
{% block tail_js %}
{{ super() }}
<script src="{{url_for('static',filename='js/your_js_file.js')}}"></script>
{% endblock %}