-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
30 lines (29 loc) · 1018 Bytes
/
search.html
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
<head>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0/handlebars.min.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h3>BetterDoctor - Doctor Search Results</h3>
<div id="content-placeholder"></div>
<script id="docs-template" type="text/x-handlebars-template">
<table>
<thead>
<th>Name</th>
<th>Title</th>
<th>Picture</th>
</thead>
<tbody>
{{#data}}
<tr>
<td><a href="{{attribution_url}}" target="_new">{{profile.first_name}} {{profile.last_name}}</a><br>
<img src="{{ratings.0.image_url_small}}"></img></td>
<td>{{profile.title}}</td>
<td><img src="{{profile.image_url}}"></img></td>
</tr>
{{/data}}
</tbody>
</table>
<script src="scripts.js" charset="utf-8"></script>
</script>
</body>