forked from COLTEC-DAW/students
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2018.html
34 lines (32 loc) · 943 Bytes
/
2018.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
---
layout: default
class: "2018"
---
<h2 style="text-align: center;">Turma de <b>{{page.class}}</b></h2>
<!-- based on http://git.io/vvroy -->
<div>
{% assign students = site.data[page.class] sort: 'name' %}
{% for user_hash in students %}
{% assign username = user_hash[0] %}
{% assign user = user_hash[1] %}
<div 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>
</div>
</a>
</div>
{% endfor %}
</div>