diff options
Diffstat (limited to 'theme/wiki')
-rw-r--r-- | theme/wiki/create.tpl | 7 | ||||
-rw-r--r-- | theme/wiki/edit.tpl | 6 | ||||
-rw-r--r-- | theme/wiki/index.tpl | 6 | ||||
-rw-r--r-- | theme/wiki/page.tpl | 3 |
4 files changed, 22 insertions, 0 deletions
diff --git a/theme/wiki/create.tpl b/theme/wiki/create.tpl new file mode 100644 index 0000000..ecd2d6b --- /dev/null +++ b/theme/wiki/create.tpl | |||
@@ -0,0 +1,7 @@ | |||
1 | <H2>Create a page</H2><P> | ||
2 | |||
3 | <FORM ACTION="./?action=submit&submit=create" METHOD="POST"> | ||
4 | Page Title: <INPUT TYPE="text" NAME="title"><BR> | ||
5 | <TEXTAREA NAME="text" COLS="80" ROWS="20"></TEXTAREA><P> | ||
6 | <INPUT TYPE="submit" VALUE="Create page"> | ||
7 | </FORM> | ||
diff --git a/theme/wiki/edit.tpl b/theme/wiki/edit.tpl new file mode 100644 index 0000000..12d2deb --- /dev/null +++ b/theme/wiki/edit.tpl | |||
@@ -0,0 +1,6 @@ | |||
1 | <H2>Edit <!--PAGENAME--></H2><P> | ||
2 | |||
3 | <FORM ACTION="./?action=submit&submit=edit" METHOD="POST"> | ||
4 | <TEXTAREA NAME="text" COLS="80" ROWS="20"><!--PAGETEXT--></TEXTAREA><P> | ||
5 | <INPUT TYPE="submit" VALUE="Edit page"> | ||
6 | </FORM> | ||
diff --git a/theme/wiki/index.tpl b/theme/wiki/index.tpl new file mode 100644 index 0000000..ed4e513 --- /dev/null +++ b/theme/wiki/index.tpl | |||
@@ -0,0 +1,6 @@ | |||
1 | <!--BEGIN LETTER--> | ||
2 | <H3 STYLE="clear: both; display: block; margin-bottom: 0"><!--LETTER.TITLE--></H2> | ||
3 | <!--BEGIN LETTER.PAGE--> | ||
4 | <SMALL><SPAN STYLE="margin-left: 50"><!--LETTER.PAGE.DATE--> | <A HREF="/wiki/<!--LETTER.PAGE.CODED-->"><!--LETTER.PAGE.TITLE--></A></SPAN></SMALL><BR> | ||
5 | <!--END LETTER.PAGE--> | ||
6 | <!--END LETTER--> | ||
diff --git a/theme/wiki/page.tpl b/theme/wiki/page.tpl new file mode 100644 index 0000000..b021e95 --- /dev/null +++ b/theme/wiki/page.tpl | |||
@@ -0,0 +1,3 @@ | |||
1 | <H2><!--TITLE--></H2><P> | ||
2 | |||
3 | <!--CONTENT--> | ||