-
Notifications
You must be signed in to change notification settings - Fork 1
/
hackers.njk
30 lines (29 loc) · 1.08 KB
/
hackers.njk
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
---
pagination:
data: hackers
size: 1
alias: hacker
permalink: "hackers/{{ hacker.username | slugify }}/"
layout: layouts/base.njk
---
<div class="page-container">
<h1><code>{{ hacker.username }}</code></h1>
<hr>
<p>
{% if hacker.bounties | length > 1 %}
<code>{{ hacker.username }}</code> has claimed ${{ hacker.total_value }} by closing {{ hacker.bounties | length }} issues across {{ hacker.num_projects }} projects!
{% else %}
<code>{{ hacker.username }}</code> has claimed ${{ hacker.total_value }} by closing {{ hacker.bounties | length }} issue across {{ hacker.num_projects }} projects!
{% endif %}
</p>
<h2>Bounties Completed</h2>
<ul>
{% for bounty in hacker.bounties %}
<li><code>{{ bounty.project }}</code>: <a href={{ bounty.url }}>{% mdRender %}{{ bounty.title }}{% endmdRender %}</a></li>
{% endfor %}
</ul>
<br>
<p>
Check out more great work from <code>{{ hacker.username }}</code> over on their GitHub account: <a href="https://github.com/{{ hacker.username }}">https://github.com/{{ hacker.username }}</a>!
</p>
</div>