blob: 18646f0a88fb6b92721bb57d81a1f1e755fe8a77 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{{template "head"}}
<h1>koushin</h1>
<a href="/mailbox/{{.Mailbox.Name}}">Back</a>
<h2>{{.Message.Envelope.Subject}}</h2>
{{define "message-part"}}
<a href="?part={{.PathString}}">{{.MIMEType}}</a>
{{if gt (len .Children) 0}}
<ul>
{{range .Children}}
<li>{{template "message-part" .}}</li>
{{end}}
</ul>
{{end}}
{{end}}
{{template "message-part" .Message.PartTree}}
{{if .Body}}
<pre>{{.Body}}</pre>
{{end}}
{{template "foot"}}
|