Design Templates
So you like enetation and want to edit your own templates, for your own use
or to offer as options for other users. This is a quick 'how to' guide, which
hopefully if you follow will enable you to make some funky themes. If you create
something good you can add it to the template list (viewable
here!)
Here is a default template, if you use this as a base to add on nice CSS, background
images or just a funky layout then go for it!
<html><head><title>comments</title></head>
<link rel="stylesheet" href="http://www.somewhere.com/something.css"
type="text/css">
<body>
<comments>
<table id="AutoNumber1">
<tr>
<td>
<a href="mailto:!email">!name</a>
<a href="!home">[www]</a>
@ !time !date !day
Comments :
!comments
</td>
</tr>
</table>
</comments>
<p>
add your comments:</p>
<table>
<form action="!action" method="POST">
<td>
your name:</td>
<td>
<input type="text" name="name" size="25" value="!username">
</td></tr>
<tr valign="top">
<td>
e-mail address:</td>
<td> <input type="text" name="email"
size="25" value="!useremail">
</td>
</tr>
<tr valign="top">
<td
width="111">
website:
</td> <td>
<input type="text" name="webpage" size="25" value="!userpage">
</td>
</tr>
<tr valign="top">
<td>
<div align="right">comments:</div>
</td>
<td>
<textarea name="comments" cols="19"
wrap="VIRTUAL" rows="5"></textarea>
</td>
</tr>
<input type="submit" name="submit" value="add
comment">
</div>
</td>
</tr>
</form>
</table>
</body></html>
|