You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
587 B
HTML
34 lines
587 B
HTML
13 years ago
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>"?subject" from ?from (?date) - ?title</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>?title</h1>
|
||
|
<a href="?index" class="back"><< back to index</a>
|
||
|
<div class="main">
|
||
|
<h2>?subject</h2>
|
||
|
<h3>?version</h3>
|
||
|
|
||
|
<table class="message">
|
||
|
<tr>
|
||
|
<th>From:</th>
|
||
|
<th>To:</th>
|
||
|
<th>Date:</th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>?from</td>
|
||
|
<td>?to</td>
|
||
|
<td>?date</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="3" class="body">
|
||
|
?body
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|