| 1234567891011121314151617181920212223242526272829 |
- {% extends 'base/layout.html' %}
- {% block content_header %}
- {% include 'widget/header.html' %}
- {% endblock %}
- {% block content_main_before %}
- {% include '../widget/page_alerts.html' %}
- {% endblock %}
- {% block content_main %}
- <div class="row">
- <div class="col-lg-10 col-md-9">
- {% include '../widget/not_found_content.html' %}
- </div> {# /.col- #}
- </div>
- {% endblock %}
- {% block body_end %}
- <div id="presentation-layer" class="fullscreen-layer">
- <div id="presentation-container"></div>
- </div>
- <div id="crowi-modals">
- </div>
- {% endblock %}
|