A webmail client. Forked from https://git.sr.ht/~migadu/alps
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
442 B

  1. {{template "head.html"}}
  2. <h1>alps</h1>
  3. <p>
  4. <a href="/contacts">Back</a>
  5. </p>
  6. {{$fn := .AddressObject.Card.Value "FN"}}
  7. <h2>Contact: {{$fn}}</h2>
  8. <p>
  9. <a href="{{.AddressObject.URL}}/edit">
  10. Edit
  11. </a>
  12. </p>
  13. <ul>
  14. <li><strong>Name</strong>: {{$fn}}</li>
  15. {{range .AddressObject.Card.Values "EMAIL"}}
  16. <li><strong>E-mail</strong>:
  17. <a href="/compose?to={{.}}">{{.}}</a>
  18. </li>
  19. {{end}}
  20. </ul>
  21. {{template "foot.html"}}