-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 912 Bytes
/
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: default
title: Leaderboard - Cornell College Summer Coding
---
<div class="container">
<div class="starter-template">
<h1>Leaderboard - Cornell College Summer Coding</h1>
<p class="lead">See how you stack up against the competition.</p>
</div>
{% for score in site.data.kattis_export %}
<h2>{{score.score}} pts</h2>
<div class="row score-row">
{% for student in score.students %}
<div class="col-md-4">
<p><h3>{{student.student}}</h3></p>
<p>{{student.solved.size}} problems solved</p>
{% for problem in student.solved %}
<h6>{{problem.name}} - {{problem.score}} pts</h6>
{% endfor %}
</div>
{% endfor %}
</div>
{% endfor %}
<p></p>
<p>Updated every evening.</p>
<p>Created by Cameron Seebach</p>
</div>