Sourcecode in Layout/edit.skin:
1: <form id="prefs" method="post" action="<% response.action %>">
2: <table border="0" cellspacing="0" cellpadding="2">
3: <tr>
4: <td colspan="2" nowrap="nowrap"><strong><a name="general">General</a></strong></td>
5: </tr>
6: <tr>
7: <td class="small" nowrap="nowrap">Title:</td>
8: <td nowrap="nowrap"><% layout.title as="editor" size="40" %></td>
9: </tr>
10: <tr>
11: <td class="small" valign="top" nowrap="nowrap">Description:</td>
12: <td nowrap="nowrap"><% layout.description as="editor" cols="30" rows="5" %></td>
13: </tr>
14: <tr>
15: <td class="small" nowrap="nowrap">Copyright:</td>
16: <td nowrap="nowrap"><% layout.copyright as="editor" size="25" %></td>
17: </tr>
18: <tr>
19: <td class="small" nowrap="nowrap">Contact e-mail:</td>
20: <td nowrap="nowrap"><% layout.email as="editor" size="25" %></td>
21: </tr>
22: <tr>
23: <td class="small" nowrap="nowrap">Basis Layout:</td>
24: <td><% layout.parent as="editor" firstOption="--- choose layout ---" %></td>
25: </tr>
26: <tr>
27: <td class="small" valign="top" nowrap="nowrap">Shareable:</td>
28: <td><% layout.shareable as="editor" no="---" %><br /><span class="small">If this option is enabled sites can use this layout as a basis for their own.</span></td>
29: </tr>
30: <tr>
31: <td colspan="2" nowrap="nowrap"><div class="listSeparator"> </div><br />
32: <strong><a name="colors">Colors</a></strong></td>
33: </tr>
34: <tr>
35: <td class="small" nowrap="nowrap">Background:</td>
36: <td nowrap="nowrap"><% colorpicker skin="colorpickerExt" name="bgcolor" text="background" %></td>
37: </tr>
38: <tr>
39: <td class="small" nowrap="nowrap">Title:</td>
40: <td nowrap="nowrap"><% colorpicker skin="colorpickerExt" name="titlecolor" text="title" %></td>
41: </tr>
42: <tr>
43: <td class="small" nowrap="nowrap">Text:</td>
44: <td nowrap="nowrap"><% colorpicker skin="colorpickerExt" name="textcolor" text="text" %></td>
45: </tr>
46: <tr>
47: <td class="small" nowrap="nowrap">Small text:</td>
48: <td nowrap="nowrap"><% colorpicker skin="colorpickerExt" name="smallcolor" text="small text" %></td>
49: </tr>
50: <tr>
51: <td class="small" nowrap="nowrap">Link:</td>
52: <td nowrap="nowrap"><% colorpicker skin="colorpickerExt" name="linkcolor" text="link" %></td>
53: </tr>
54: <tr>
55: <td class="small" nowrap="nowrap">Active link:</td>
56: <td nowrap="nowrap"><% colorpicker skin="colorpickerExt" name="alinkcolor" text="active link" %></td>
57: </tr>
58: <tr>
59: <td class="small" nowrap="nowrap">Visited link:</td>
60: <td nowrap="nowrap"><% colorpicker skin="colorpickerExt" name="vlinkcolor" text="visited link" %></td>
61: </tr>
62: <tr>
63: <td colspan="2" nowrap="nowrap"><div class="listSeparator"> </div><br />
64: <strong><a name="fonts">Fonts</a></strong></td>
65: </tr>
66: <tr>
67: <td class="small" nowrap="nowrap">Title font:</td>
68: <td nowrap="nowrap"><% layout.titlefont as="editor" width="30" %></td>
69: </tr>
70: <tr>
71: <td class="small" nowrap="nowrap">Title size:</td>
72: <td nowrap="nowrap"><% layout.titlesize as="editor" width="10" %></td>
73: </tr>
74: <tr>
75: <td class="small" nowrap="nowrap">Text font:</td>
76: <td nowrap="nowrap"><% layout.textfont as="editor" width="30" %></td>
77: </tr>
78: <tr>
79: <td class="small" nowrap="nowrap">Text size:</td>
80: <td nowrap="nowrap"><% layout.textsize as="editor" width="10" %></td>
81: </tr>
82: <tr>
83: <td class="small" nowrap="nowrap">Small font:</td>
84: <td nowrap="nowrap"><% layout.smallfont as="editor" width="30" %></td>
85: </tr>
86: <tr>
87: <td class="small" nowrap="nowrap">Small size:</td>
88: <td nowrap="nowrap"><% layout.smallsize as="editor" width="10" %></td>
89: </tr>
90: <tr>
91: <td class="small" nowrap="nowrap"> </td>
92: <td nowrap="nowrap"><br /><% input type="submit" name="save" value="Save" %> <% input type="submit" name="cancel" value="Cancel" %></td>
93: </tr>
94: </table>
95: </form>
96:
|