Create index.html

This commit is contained in:
Chris Roos 2017-06-27 14:14:21 +01:00 committed by GitHub
parent da9a10dcd6
commit b9d88af150
1 changed files with 9 additions and 0 deletions

9
index.html Normal file
View File

@ -0,0 +1,9 @@
<ul>
{% for member in site.data.members %}
<li>
<a href="{{ member.website }}">
{{ member.name }}
</a>
</li>
{% endfor %}
</ul>