mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-28 06:57:03 +00:00
- Rename BUILD_DATE to BUILDDATE in goxc - Update travis config - Follow linter recommendations for inbucket.go - Follow linter recommendations for config package - Follow linter recommendations for log package - Follow linter recommendations for pop3d package - Follow linter recommendations for smtpd package - Follow linter recommendations for web package - Fix Id -> ID in templates - Add shebang to REST demo scripts - Add or refine many comments
13 lines
316 B
HTML
13 lines
316 B
HTML
{{$name := .name}}
|
|
{{range .messages}}
|
|
<div class="box listEntry" id="{{.ID}}">
|
|
<div class="subject">{{.Subject}}</div>
|
|
<div class="from">{{.From}}</div>
|
|
<div class="date">{{friendlyTime .Date}}</div>
|
|
</div>
|
|
{{else}}
|
|
<div class="box">
|
|
<p style="height: 30px; padding-left: 10px;">No messages!</p>
|
|
</div>
|
|
{{end}}
|