JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
pare html <head>s that aren't ever output
[wfpl-cms.git] / admin_pages.html
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5         <title><!--~$title show {~-->~$host~ Admin: <!--~listings {~-->Pages Listing<!--~}~--><!--~form {~--><!--~id {~-->Add a new page<!--~}~--><!--~id unset {~-->Edit page "~title html~"<!--~}~--><!--~}~--><!--~}~--></title>
6         <!--~$head {~-->
7         <script type="text/javascript" src="code/ckeditor/ckeditor.js"></script>
8         <script type="text/javascript">
9                 function make_wysiwyg(name) {
10                         CKEDITOR.replace(name, {
11                                 'contentsCss': 'style_01.css',
12                                 'uiColor': '#ccccff',
13                                 'removePlugins': 'forms,templates,smiley,pagebreak,save,newpage,preview,print',
14                                 'height': '300px',
15                                 'toolbar': [
16                                         ['Source'],
17                                         ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'SpellChecker', 'Scayt'],
18                                         ['Undo', 'Redo', '-', 'Find', 'Replace', '-', 'SelectAll', 'RemoveFormat'],
19                                         '/',
20                                         ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript'],
21                                         ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'],
22                                         ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
23                                         ['Link', 'Unlink', 'Anchor'],
24                                         ['Image', 'Table', 'HorizontalRule', 'SpecialChar', 'PageBreak'],
25                                         '/',
26                                         ['Styles', 'Format', 'Font', 'FontSize'],
27                                         ['TextColor', 'BGColor'],
28                                         ['Maximize', 'ShowBlocks']
29                                 ]
30                         });
31                 }
32         </script>
33         <!--~}~-->
34
35 </head>
36
37 <body>
38 <!--~$body show {~-->
39
40         <!--~form {~-->
41                 <h2><!--~id unset {~-->Add a new page<!--~}~--><!--~id {~-->Edit page "~title html~"<!--~}~--></h2>
42
43                 <form action="admin_pages" method="post"><!--~id {~--><div style="display: none"><input type="hidden" name="edit_id" value="~id attr~"></div><!--~}~-->
44
45                         <div class="caption">Title</div>
46                         <div class="field_notes">(This appears at the top of the page, in the window title-bar (by the close button) and as the headline/link of search engine results.)</div>
47                         <div class="field"><input type="text" name="title" value="~title attr~"></div>
48
49                         <div class="caption">Filename</div>
50                         <div class="field_notes">(<!--~editing {~-->Careful: if you change this, be sure to update all links to this page<!--~}~--><!--~editing unset {~-->Please use only a-z, 0-9 and _ (underscore) in your filename. Please, no capitals, punctuation or spaces.<!--~}~-->)</div>
51                         <div class="field"><input type="text" name="filename" value="~filename attr~"></div>
52
53                         <div class="caption">Show in navigation links</div>
54                         <div class="field_notes">(On the left of every page.)</div>
55                         <div class="field"><select name="navbar"><!--~navbar options~--></select></div>
56
57                         <div class="caption">Navigation Link Text</div>
58                         <div class="field_notes">(If you'd like this page to appear in the navigation with a shorter title.)</div>
59                         <div class="field"><input type="text" name="nav_title" value="~nav_title attr~"></div>
60
61                         <div class="caption">Content</div>
62                         <div class="field_notes">
63                                 <ul>
64                                         <li>If you don't see an editor below (with buttons in it) then please try this page in <a href="http://getfirefox.com">Mozilla FireFox</a> or <a href="http://www.google.com/chrome/">Google Chrome</a>.</li>
65                                         <li>If you're pasting from Microsoft Word, please use the "paste from word" button (4 right of the scissors).</li>
66                                         <li>In the link dialog, you can make a link to another page on this site by entering that page's "filename" in the URL field.</li>
67                                 </ul>
68                         </div>
69                         <div class="field"><textarea class="html_editor" rows="20" cols="50" id="content" name="content">~content html~</textarea><script type="text/javascript">make_wysiwyg('content');</script></div>
70
71                         <div class="caption">Description</div>
72                         <div class="field_notes">(Hidden description of this page, primarily for search engines.)</div>
73                         <div class="field"><textarea rows="9" cols="22" name="description">~description html~</textarea></div>
74
75                         <div class="caption">Keywords</div>
76                         <div class="field_notes">(Hidden words (up to 30) with commas between them for search engines)</div>
77                         <div class="field"><textarea rows="9" cols="22" name="keywords">~keywords html~</textarea></div>
78
79                         <div class="caption">&nbsp;</div>
80                         <div class="field"><input type="submit" name="save" value="Save"></div>
81
82                 </form>
83
84                 <div class="caption">&nbsp;</div>
85                 <div class="field"><a href="~filename nonempty {~~filename attr~~}~~filename empty {~admin_pages~id {~?id=~id~~}~~}~">Cancel</a></div>
86         <!--~}~-->
87
88         <!--~listings once {~-->
89                 <!--~listings once_if {~-->
90                         <p><a href="admin_pages?new=1">[Add a new page]</a></p>
91
92                         <table cellspacing="0" cellpadding="4" border="1" summary="">
93                                 <tr><th>Title</th><th>Filename</th><th>&nbsp;</th></tr>
94                                 <!--~listings {~-->
95                                 <tr>
96                                         <td class="listing"><a href="admin_pages?edit_id=~id~">~title html~<!--~title empty {~--><em>(untitled)</em><!--~}~--></a></td>
97                                         <td class="listing"><a href="admin_pages?edit_id=~id~">~filename html~<!--~filename empty {~--><em>(offline)</em><!--~}~--></a></td>
98                                         <td><a href="admin_pages?admin_pages_delete_id=~id~" onclick="return confirm('Permanently delete?')">[delete this page]</a></td>
99                                 </tr>
100                                 <!--~}~-->
101
102                         </table>
103                 <!--~}~-->
104                 <!--~listings once_else {~-->
105                         <p>No pages in database.</p>
106                 <!--~}~-->
107
108                 <p><a href="admin_pages?new=1">[Add a new page]</a></p>
109         <!--~}~-->
110 <!--~}~-->
111 </body>
112 </html>