forked from benoitrauturier/students
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.13 KB
/
index.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
---
layout: default
---
<h1><a href="http://github.com/ScPo-CompEcon">Computational Economics</a> Student Directory</h1>
<p>
<a href="https://github.com/ScPo-CompEcon/students">Add yourself!</a>
</p>
<!-- based on http://git.io/vvroy -->
<ul>
{% assign students = site.data[site.current_term] | sort %}
{% for user_hash in students %}
{% assign username = user_hash[0] %}
{% assign user = user_hash[1] %}
<li class="js-student" data-username="{{username}}">
<a href="https://github.com/{{ username }}">
<!-- TODO add loading image -->
<img class="js-avatar" src=""/>
<div class="info">
<div>
<span class="github-username">@{{ username }}</span>
{% assign emoji = user.emoji | replace:':','' | replace:'+','--' %}
<i class="em em-{{ emoji }}"></i>
</div>
<div>
<span class="js-name"></span>
</div>
<p>
{{ user.introduction }}
</p>
<p> <strong>Computing:</strong> <br>
{{ user.computing}}
</p>
</div>
</a>
</li>
{% endfor %}
</ul>