{% extends '../layout/admin.html' %} {% block html_title %}カスタマイズ · {% endblock %} {% block html_additional_headers %} {% endblock %} {% block content_head %}
{% endblock %} {% block content_main %}
{% set smessage = req.flash('successMessage') %} {% if smessage.length %}
{{ smessage }}
{% endif %} {% set emessage = req.flash('errorMessage') %} {% if emessage.length %}
{{ emessage }}
{% endif %}
{% include './widget/menu.html' with {current: 'customize'} %}
レイアウト

Traditional Crowi Layout

crowi-plus Original Layout

カスタムCSS

システム全体に適用されるCSSを記述できます。
変更の反映はページの更新が必要です。

Ctrl+Space でコード補完

{% endblock content_main %} {% block content_footer %} {% endblock content_footer %}