-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembers.html
41 lines (39 loc) · 1.05 KB
/
members.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
31
32
33
34
35
36
37
38
39
40
---
ext-js:
- "//cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.3.1/build/ol.js"
- "//cdn.datatables.net/1.10.21/js/jquery.dataTables.min.js"
js:
- "assets/js/data_table.js"
- "assets/js/member_map.js"
ext-css:
- "//cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.3.1/css/ol.css"
- "//cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css"
- "https://fonts.googleapis.com/icon?family=Material+Icons"
css:
- "assets/css/linn.css"
- "assets/css/map.css"
---
<div id="map" class="map"></div>
<div id="popup"></div>
<table id="data-table-no-paging">
<thead>
<tr>
<td>Library</td>
<td>Address</td>
<td>Payment methods</td>
</tr>
</thead>
<tbody>
{% for member in site.data.members %}
<tr>
<td><a href="{{ member.url }}">{{ member.name }}</a></td>
<td>{{ member.address }}</td>
<td>
{% if member.payment_methods %}
{{ member.payment_methods | array_to_sentence_string }}
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>