-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathactivities.html
46 lines (44 loc) · 1.24 KB
/
activities.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: Activities
---
<section>
<header class="section-header">
<h2 id="activities">Activities</h2>
</header>
<div class="container">
<p>We frequently participate in CTFs. </p>
<p>Check out our latest results on <a href="https://ctftime.org/team/29688">our CTFtime page</a>.</p>
</div>
</section>
{% for year in site.data.activities %}
<section>
<header class="section-header">
<h3 id="{{ year.year }}">{{ year.year }}</h3>
</header>
<div class="container">
{% if year.rank %}
<p>Overall rank: {{ year.rank }}</p>
{% endif %}
<ul>
{% for ctf in year.ctfs %}
<li>
{% if ctf.tags %}
{% for tag in ctf.tags %}
<span class="badge badge-info">{{ tag }}</span>
{% endfor %}
{% endif %}
{{ ctf.name }} ({% if ctf.rank == 1 %}<i class="fa fa-trophy" aria-hidden="true"></i> {% endif %}{{ ctf.rank }} / {{ ctf.participants }})
{% if ctf.writeups and ctf.writeups.size > 0 %}
<ul>
{% for writeup in ctf.writeups %}
<li><a href="{{ writeup.url }}">{{ writeup.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</section>
{% endfor %}