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.
 
 
 
 

35 lines
697 B

  1. {{template "head.html"}}
  2. <h1>alps</h1>
  3. <p>
  4. <a href="/">Back</a> · <a href="/contacts/create">Create new contact</a>
  5. </p>
  6. <h2>Contacts: {{.AddressBook.Name}}</h2>
  7. <form method="get" action="">
  8. <input type="search" name="query" value="{{.Query}}">
  9. <input type="submit" value="Search">
  10. </form>
  11. {{if .AddressObjects}}
  12. <ul>
  13. {{range .AddressObjects}}
  14. <li>
  15. <a href="{{.URL}}">
  16. {{.Card.Value "FN"}}
  17. </a>
  18. {{$email := .Card.PreferredValue "EMAIL"}}
  19. {{if $email}}
  20. &lt;<a href="/compose?to={{$email}}">{{$email}}</a>&gt;
  21. {{end}}
  22. </li>
  23. {{end}}
  24. </ul>
  25. {{else}}
  26. <p>No contact.</p>
  27. {{end}}
  28. {{template "foot.html"}}