30 lines
698 B
HTML
30 lines
698 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>
|
|
{{list}}: {{subject}}
|
|
</title>
|
|
<link rel="stylesheet" href="../../style/luga.css">
|
|
</head>
|
|
<body>
|
|
<img id="logo" src="/style/logo3.svg">
|
|
<header>
|
|
<h1>{{subject}}</h1>
|
|
</header>
|
|
<nav>
|
|
{{threadhtml}}
|
|
</nav>
|
|
<article class="email">
|
|
<table>
|
|
<tr> <th>Message-Id </th> <td>{{message_id}} </td> </tr>
|
|
<tr> <th>From </th> <td>{{from}} </td> </tr>
|
|
<tr> <th>Date </th> <td>{{date}} </td> </tr>
|
|
</table>
|
|
|
|
{{bodyhtml}}
|
|
</article>
|
|
|
|
</body>
|
|
</html>
|