-
Notifications
You must be signed in to change notification settings - Fork 15
/
hacks.html
46 lines (41 loc) · 1.02 KB
/
hacks.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
41
42
43
44
45
46
---
layout: default
title: Hacks
---
<hr />
{% for entry in site.hacks %}
<h3>{{ entry.name }}</h3>
{% assign content_length = entry.content escape | strip_newlines | size %}
{% if content_length > 0 %}
<article class="md">{{entry.content|markdownify}}</article>
{% endif %}
<ul class="members">
{% if entry.guide %}
<li class="hack-guide">
<a href="https://github.com/{{entry.guide}}">
{% avatar user=entry.guide %}
</a>
</li>
{% endif %}
{% for member in entry.members %}
{% if member != entry.guide %}
<li>
<a href="https://github.com/{{member}}">
{% avatar user=member %}
</a>
</li>
{% endif %}
{% endfor %}
</ul>
{% else %}
<p>No hacks yet 😭</p>
<p>
<a class="massive-button" href="register">Register your hack!</a>
</p>
{% endfor %}
<hr>
<p>
Take a look at hacks from previous years: <a href="/2017/hacks">2017</a>
</p>
<!-- the head tag is for losers -->
<link href="https://fonts.googleapis.com/css?family=Fira+Mono" rel="stylesheet">