-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
31 lines (31 loc) · 1.07 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
---
layout: base
---
<p>
hackNY is a community of technologists aspiring to change the world.
</p>
<p>
Our aim is to build a <b>diverse</b> and <b>inclusive</b> tech
community to empower the next generation of responsible leaders in NYC.
You can learn more on our <a href="https://hackny.org">website</a>.
</p>
<p>
The hackNY webring is a directory of personal websites for alumNY of the
<a href="https://hackny.org/fellows-program">fellowship program</a>.
</p>
<h2>alumNY websites</h2>
<div class="actions">
<button onclick="goToRandom()">Random site »</button>
</div>
{% assign fellows = site.data.fellows | sample: 400 %}
{% for fellow in fellows %}
<a href="{{fellow.url}}" class="site">
<div class="site--emoji">{% if fellow.emoji %}{{fellow.emoji}}{% else %}😀{% endif %}</div>
<div class="site--meta">
<div class="site--title">{{fellow.name}} <span class="site--year">('{{fellow.year | slice: -2, 2}})</span></div>
{% if fellow.description %}
<div class="site--description">{{fellow.description}}</div>
{% endif %}
</div>
</a>
{% endfor %}