Skip to content

Commit d070fd4

Browse files
committed
wip push
1 parent e36c194 commit d070fd4

14 files changed

Lines changed: 68 additions & 22 deletions

File tree

pages/arenas/battlesnake.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
title: Battlesnake
22
image: /static/images/arenas/battlesnake.png
3-
description: Hi
3+
description: Snake AIs compete to survive and grow in a grid
4+
players: 2+
5+
language: Python
46

57
---

pages/arenas/corewar.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
title: Core War
22
image: /static/images/arenas/corewar.png
3-
description: Hi
3+
description: Redcode warriors battle to control a virtual computer
4+
players: 2+
5+
language: RedCode
6+
7+
---
48

5-
---

pages/arenas/halite.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
title: Halite
22
image: /static/images/arenas/halite.png
3-
description: Hi
3+
description: Distribute resources wisely to conquer territory
4+
players: 2+
5+
language: C, C++, OCaml, Rust
46

57
---

pages/arenas/poker.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
title: Poker
22
image: /static/images/arenas/poker.png
3-
description: Hi
3+
description: No Limit Texas Hold'em with 2+ players
4+
players: 2+
5+
language: Python
46

57
---

pages/arenas/robocode.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
title: RoboCode
22
image: /static/images/arenas/robocode.png
3-
description: Hi
3+
description: Tank combat - outlast and outgun opponents
4+
players: 2+
5+
language: Java
46

57
---

pages/arenas/robotrumble.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
title: RobotRumble
22
image: /static/images/arenas/robotrumble.png
3-
description: Hi
3+
description: Program swarms to overwhelm opponents
4+
players: 2
5+
language: JavaScript, Python
46

5-
---
7+
---
8+
9+
<div style="text-align:center;">
10+
<img src="/static/images/arenas/robotrumble_gif.gif" style="width:50%;"/>
11+
</div>

pages/insights/20251104_release.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ description: Benchmarking Goal Oriented Software Engineering
44
authors: John Yang, Kilian Lieret
55
time: TUESDAY, NOVEMBER 4, 2025
66

7-
---
7+
---
8+

server.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ def index():
3737
def page(path):
3838
return render_template('page.html', page=pages.get_or_404(path))
3939

40+
@app.route('/about/')
41+
def about():
42+
return render_template('about.html')
43+
4044
@app.route('/team/')
4145
def team():
4246
return render_template('team.html')
@@ -55,7 +59,7 @@ def arenas():
5559

5660
@app.route('/arenas/<path:path>/')
5761
def arena(path):
58-
return render_template('page.html', page=pages.get_or_404('arenas/' + path))
62+
return render_template('arena.html', page=pages.get_or_404('arenas/' + path))
5963

6064
@app.errorhandler(404)
6165
def page_not_found(path):

static/css/layout.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,22 @@ body {
5454

5555
.leaderboard-table th,
5656
.leaderboard-table td {
57-
padding: 0.75rem;
57+
padding: 0.5rem;
5858
text-align: left;
5959
}
6060

6161
.leaderboard-table th {
6262
font-weight: 600;
6363
}
6464

65+
.leaderboard-table tbody tr {
66+
border-bottom: 1px solid #e5e7eb;
67+
}
68+
6569
.leaderboard-table td:first-child,
6670
.leaderboard-table th:first-child {
67-
text-align: center;
68-
width: 5rem;
71+
text-align: left;
72+
width: 3rem;
6973
}
7074

7175
.leaderboard-table td:last-child,
260 KB
Loading

0 commit comments

Comments
 (0)