A webmail client. Forked from https://git.sr.ht/~migadu/alps
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

57 rader
1.1 KiB

  1. {{template "head"}}
  2. <h1>koushin</h1>
  3. <p>
  4. <a href="/mailbox/{{.Mailbox.Name | pathescape}}">Back</a>
  5. </p>
  6. <h2>
  7. {{if .Message.Envelope.Subject}}
  8. {{.Message.Envelope.Subject}}
  9. {{else}}
  10. (No subject)
  11. {{end}}
  12. </h2>
  13. {{define "message-part-tree"}}
  14. {{/* nested templates can't access the parent's context */}}
  15. {{$ = index . 0}}
  16. {{with index . 1}}
  17. <a
  18. {{if .IsText}}
  19. href="{{$.Message.Uid}}?part={{.PathString}}"
  20. {{else}}
  21. href="{{$.Message.Uid}}/raw?part={{.PathString}}"
  22. {{end}}
  23. >
  24. {{if eq $.PartPath .PathString}}<strong>{{end}}
  25. {{.String}}
  26. {{if eq $.PartPath .PathString}}</strong>{{end}}
  27. </a>
  28. {{if gt (len .Children) 0}}
  29. <ul>
  30. {{range .Children}}
  31. <li>{{template "message-part-tree" (tuple $ .)}}</li>
  32. {{end}}
  33. </ul>
  34. {{end}}
  35. {{end}}
  36. {{end}}
  37. <p>Parts:</p>
  38. {{template "message-part-tree" (tuple $ .Message.PartTree)}}
  39. <hr>
  40. {{if .Body}}
  41. <p><a href="{{.Message.Uid}}/reply?part={{.PartPath}}">Reply</a></p>
  42. <pre>{{.Body}}</pre>
  43. {{else}}
  44. <p>Can't preview this message part.</p>
  45. <a href="{{.Message.Uid}}/raw?part={{.PartPath}}">Download</a>
  46. {{end}}
  47. {{template "foot"}}