| 1234567891011121314151617181920212223242526272829303132333435 |
- {% extends '../layout/admin.html' %}
- {% block html_title %}{{ customizeService.generateCustomTitle(t('Markdown settings')) }}
- · {{ path }}{% endblock %}
- {% block content_header %}
- <div class="header-wrap">
- <header id="page-header">
- <h1 id="admin-title" class="title">{{ t('Markdown Settings') }}</h1>
- </header>
- </div>
- {% endblock %}
- {% block content_main %}
- <div class="content-main">
- <div class="row">
- <div class="col-md-3">
- {% include './widget/menu.html' with {current: 'markdown'} %}
- </div>
- <div class="col-md-9" id="admin-markdown-setting"></div>
- </div>
- </div>
- {% endblock content_main %}
- {% block content_footer %}
- {% endblock content_footer %}
|