alps/public/message.html
2019-12-03 11:11:49 +01:00

27 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"}}