aboutsummaryrefslogtreecommitdiff
path: root/public/message.html
blob: 047e78fcdacae6a7bdf188a621e2fd5416d73a0d (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"}}
	{{.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"}}