forked from toastyduck/students
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·32 lines (28 loc) · 867 Bytes
/
index.html
File metadata and controls
executable file
·32 lines (28 loc) · 867 Bytes
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
---
layout: page
title: Student Directory
---
<!-- based on http://git.io/vvroy -->
<div class="row">
{% assign students = site.data.summer_2015 | sort %}
{% for user_hash in students %}
{% assign username = user_hash[0] %}
{% assign user = user_hash[1] %}
<div class="col-md-12 student" data-username="{{username}}">
<img class="avatar" src=""/>
<div class="info">
<div>
<a href="https://github.com/{{ username }}"><span class="gh-username">@{{ username }}</span></a>
{% assign emoji = user.emoji | replace:':','' | replace:'+','--' %}
<i class="em em-{{ emoji }}"></i>
</div>
<div>
<span class="name"></span>
</div>
<p>
{{ user.introduction }}
</p>
</div>
</div>
{% endfor %}
</div>