|
Revision 2947, 0.6 kB
(checked in by jmorliaguet, 3 years ago)
|
- added a themes manager
- removed the info screen
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<html> |
|---|
| 2 |
<head> |
|---|
| 3 |
<title>CPSSkins v3</title> |
|---|
| 4 |
|
|---|
| 5 |
<style type="text/css"> |
|---|
| 6 |
body { |
|---|
| 7 |
font: 11px Verdana, Arial, sans-serif; |
|---|
| 8 |
} |
|---|
| 9 |
h1 { |
|---|
| 10 |
font-size: 1.5em; |
|---|
| 11 |
} |
|---|
| 12 |
h2 { |
|---|
| 13 |
font-size: 1.3em; |
|---|
| 14 |
border-bottom: 1px solid gray; |
|---|
| 15 |
} |
|---|
| 16 |
</style> |
|---|
| 17 |
</head> |
|---|
| 18 |
|
|---|
| 19 |
<body> |
|---|
| 20 |
|
|---|
| 21 |
<h1>CPSSkins v3</h1> |
|---|
| 22 |
|
|---|
| 23 |
<h2>Themes</h2> |
|---|
| 24 |
|
|---|
| 25 |
<ul tal:define="themes view/getThemes"> |
|---|
| 26 |
<li tal:repeat="theme themes"> |
|---|
| 27 |
<a tal:attributes="href string:@@editor.html?id=${theme/name}" |
|---|
| 28 |
tal:content="theme/title" /> |
|---|
| 29 |
</li> |
|---|
| 30 |
</ul> |
|---|
| 31 |
|
|---|
| 32 |
<form action="addTheme.html" method="post"> |
|---|
| 33 |
<p> |
|---|
| 34 |
<button type="submit">Add a theme</button> |
|---|
| 35 |
</p> |
|---|
| 36 |
</form> |
|---|
| 37 |
|
|---|