| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <div class="modal" id="create-template">
- <div class="modal-dialog">
- <div class="modal-content">
- <div class="modal-header bg-primary">
- <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
- <div class="modal-title">{{ t('template.modal_label.Create/Edit Template Page') }}</div>
- </div>
- <div class="modal-body">
- <div class="form-group">
- <label class="mb-4">{{ t('template.modal_label.Create template under', page.path ) }}</label>
- <div class="row">
- <div class="col-sm-6">
- <div class="panel panel-default">
- <div class="panel-heading">{{ t('template.local.label') }}</div>
- <div class="panel-body">
- <p class="text-center"><code>_template</code></p>
- <p class="help-block text-center"><small>{{ t('template.local.desc') }}</small></p>
- </div>
- <div class="panel-footer text-center">
- {% if localTemplateExists %}
- <a href="{{ page.path }}/_template#edit-form"><button class="btn btn-sm btn-primary">{{ t('Edit') }}</button></a>
- {% else %}
- <a href="{{ page.path }}/_template#edit-form"><button class="btn btn-sm btn-primary">{{ t('Create') }}</button></a>
- {% endif %}
- </div>
- </div>
- </div>
- <div class="col-sm-6">
- <div class="panel panel-default">
- <div class="panel-heading">{{ t('template.global.label') }}</div>
- <div class="panel-body">
- <p class="text-center"><code>__template</code></p>
- <p class="help-block text-center"><small>{{ t('template.global.desc') }}</small></p>
- </div>
- <div class="panel-footer text-center">
- {% if globalTemplateExists %}
- <a href="{{ page.path }}/__template#edit-form"><button class="btn btn-sm btn-primary">{{ t('Edit') }}</button></a>
- {% else %}
- <a href="{{ page.path }}/__template#edit-form"><button class="btn btn-sm btn-primary">{{ t('Create') }}</button></a>
- {% endif %}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div><!-- /.modal-content -->
- </div><!-- /.modal-dialog -->
- </div><!-- /.modal -->
|