mirror of
https://github.com/jhillyerd/inbucket.git
synced 2026-01-03 09:57:09 +00:00
23 lines
333 B
HTML
23 lines
333 B
HTML
{{template "header.html" .}}
|
|
|
|
<h1>Your Index Is Ready</h1>
|
|
{{$name := .name}}
|
|
<p>{{.name}} inbox</p>
|
|
|
|
{{if .messages}}
|
|
<ul>
|
|
{{range .messages}}
|
|
<li>
|
|
<a href="/mailbox/show/{{$name}}/{{.Id}}">{{.Subject}}</a>
|
|
from {{.From}}
|
|
({{.Date}})
|
|
</li>
|
|
{{end}}
|
|
</ul>
|
|
{{else}}
|
|
<p>No messages!</p>
|
|
{{end}}
|
|
|
|
{{template "footer.html" .}}
|
|
|