-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMap-summary.html
32 lines (27 loc) · 883 Bytes
/
Map-summary.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
---
layout: default
title: Map summary
section: browse
---
<h2> Summary of map details</h2>
<p> This table summarizes information regarding sources used for generating the indicative maps for all Ecosystem Functional Groups. Alternatively, follow <a href='/Ecosystem-profiles-comments/Map-references.html'>this link to see the list of references used for the maps</a>.</p>
<table>
<tr>
<th>Map code</th>
<th>Description</th>
<th>Contributors</th>
</tr>
{% for EFG in site.EFGs %}
<tr>
<th colspan=3><a href="EFGs/{{ EFG.code }}">{{ EFG.name }}</a></th>
</tr>
{% assign mapdata = site.data.mapinfo | where: "efg", EFG.code %}
{% for item in mapdata %}
<tr>
<td>{{ item.code }} {{ item.version }}</td>
<td>{{ item.description }}</td>
<td>{{ item.contributors }}</td>
</tr>
{% endfor %}
{% endfor %}
</table>