mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
264 B
15 lines
264 B
6 years ago
|
---
|
||
|
layout: org
|
||
|
permalink: /:collection/:path.html
|
||
|
---
|
||
|
# Glossary
|
||
|
|
||
|
<table class="uk-table uk-table-large uk-table-striped">
|
||
|
{% for member in site.data.glossary %}
|
||
|
<tr>
|
||
|
<th>{{ member.Term }}</th>
|
||
|
<td>{{ member.Definition }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|