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

27 lines
448 B
HTML

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