Warning, /epic.github.io/_includes/documents/kw.md is written in an unsupported language. File is not indexed.
0001 {%- if include.category=='proposed' -%}
0002 {%- assign keys=site.data.keywords | where_exp: "item", "item.category==include.category" -%}
0003 {%- else -%}
0004 {%- assign keys=site.data.keywords | where_exp: "item", "item.category==include.category" | sort: "name" -%}
0005 {%- endif -%}
0006
0007 <table width="70%" border="1">
0008 <tr><th class="text-center">Keyword</th><th class="text-center">Description</th></tr>
0009 {% for item in keys %}
0010 <tr>
0011 {%- if item.category=='proposed' or item.upload==false -%}
0012 <td width="20%">{{ item.name }}</td>
0013 {%- else -%}
0014 <td width="20%"><nobr><a href="{{ site.zenodo_query_base }}{{ item.name }}" target="_blank">{{ item.name }}</a></nobr></td>
0015 {%- endif -%}
0016 <td width="80%">{{ item.description}}</td>
0017 </tr>
0018 {% endfor %}
0019 </table>