yama/templates/message.html

33 lines
843 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>
<div class="threadmarker" style="position: absolute; top: {{threadindex * 32}}px">
</div>
{{threadhtml}}
</nav>
<article class="email">
Message #{{threadindex}}
<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>