26 lines
428 B
HTML
26 lines
428 B
HTML
{{template "head"}}
|
|
|
|
<h1>koushin</h1>
|
|
|
|
<a href="/mailbox/{{.Mailbox.Name}}">Back</a>
|
|
|
|
<h2>{{.Message.Envelope.Subject}}</h2>
|
|
|
|
{{define "message-part"}}
|
|
{{.MIMEType}}/{{.MIMESubType}}
|
|
{{if gt (len .Parts) 0}}
|
|
<ul>
|
|
{{range .Parts}}
|
|
<li>{{template "message-part" .}}</li>
|
|
{{end}}
|
|
</ul>
|
|
{{end}}
|
|
{{end}}
|
|
|
|
{{template "message-part" .Message.BodyStructure}}
|
|
|
|
{{if .Body}}
|
|
<pre>{{.Body}}</pre>
|
|
{{end}}
|
|
|
|
{{template "foot"}}
|