{### Modified By 黄伟枞 Modify: 1. 修改 shortcut icon 2. 新增 bootstrap_css block 3. 新增 cuav_css block ###} {% extends "layout.html" %} {% block head %} {{ super() }} {% set cuavConfig = config.pluginsConfig['theme-cuav'] %} {% if cuavConfig.useGitbookIcon %} {% elif cuavConfig.iconPath %} {% else %} {% endif %} {% endblock %} {% block style %} {### Include theme css before plugins css ###} {{ super() }} {### Custom stylesheets for the book ###} {% for type, style in config.styles %} {% if fileExists(style) and type == "website" %} {% endif %} {% endfor %} {% block bootstrap_css %} {% endblock %} {% block cuav_css %} {% endblock %} {% endblock %} {% block body %}{% endblock %}