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