-
Notifications
You must be signed in to change notification settings - Fork 2
/
ctfs.html
31 lines (29 loc) · 1.05 KB
/
ctfs.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: default
title: CTFs
description: Some CTFs our team has played in the past!
---
<h1>Past CTFs</h1>
<p>Here are some of the CTFs we have played in the past! For more information, check out our <a href="https://ctftime.org/team/186494">CTF Time!</a></p>
{% for year in site.data.ctfs.ctfs %}
<h2 class="ctf-year">{{ year.year }}</h2>
<ul class="ctf-cards">
{% for ctf in year.ctfs %}
<li>
<div class="ctf-details">
{% if ctf.place == "organizers" %}
<div class="ctf-organizers">ORGANIZERS</div>
{% else %}
<div class="ctf-place">#{{ ctf.place }}</div>
{% endif %}
<div class="ctf-time-link">
<a href="https://ctftime.org/event/{{ ctf.id }}">CTF Time</a> →
</div>
</div>
<div class="ctf-name">
{{ ctf.name }}
</div>
</li>
{% endfor %}
</ul>
{% endfor %}