Line | |
---|
1 | {% extends "layout.html.twig" %} |
---|
2 | {% import "js_helpers.html.twig" as js %} |
---|
3 | {% block header %} |
---|
4 | {{ parent() }} |
---|
5 | {{ js.date_picker }} |
---|
6 | {{ js.tool_bar }} |
---|
7 | {{ js.modal }} |
---|
8 | {{ js.meta_editor }} |
---|
9 | <script type="text/javascript" src="{{theme_url}}js/_post.js"></script> |
---|
10 | {{ js.confirm_close(['entry-form','comment-form']) }} |
---|
11 | {{ js.page_tabs(default_tab) }} |
---|
12 | {% endblock %} |
---|
13 | |
---|
14 | {% block content %} |
---|
15 | {{ parent() }} |
---|
16 | |
---|
17 | <div class="multi-part" title="{{__('Edit entry')}}" id="edit-entry"> |
---|
18 | {% form post %} |
---|
19 | <div id="entry-wrapper"> |
---|
20 | <div id="entry-content"> |
---|
21 | <div class="constrained"> |
---|
22 | <p class="col">{{ form_field('post_title',{'class':'maximal'}) }}</p> |
---|
23 | <p class="area" id="excerpt-area">{{ form_field('post_excerpt',{'rows':5,'cols':50}) }}</p> |
---|
24 | <p class="area" id="content-area">{{ form_field('post_content',{'rows':edit_size,'cols':5}) }}</p> |
---|
25 | <p class="area" id="notes-area">{{ form_field('post_notes',{'rows':5,'cols':50}) }}</p> |
---|
26 | <p>{{ form_field('save')}} {{form_field('delete',{'class':'delete'})}}</p> |
---|
27 | </div> |
---|
28 | </div> |
---|
29 | </div> |
---|
30 | <div id="entry-sidebar"> |
---|
31 | <p>{{ form_field('cat_id',{'class':'maximal'})}}</p> |
---|
32 | <p>{{ form_field('post_status')}}</p> |
---|
33 | <p>{{ form_field('post_dt')}}</p> |
---|
34 | <p>{{ form_field('post_format')}}</p> |
---|
35 | <p>{{ form_field('post_open_comment')}}</p> |
---|
36 | <p>{{ form_field('post_open_tb')}}</p> |
---|
37 | <p>{{ form_field('post_selected')}}</p> |
---|
38 | <p>{{ form_field('post_lang')}}</p> |
---|
39 | </div> |
---|
40 | {% endform %} |
---|
41 | </div> |
---|
42 | {% endblock %} |
---|
43 | |
---|
Note: See
TracBrowser
for help on using the repository browser.