Initialize repo

This commit is contained in:
Zachary Talis 2021-06-23 00:09:17 -04:00
parent 5bf193e59b
commit f52d616931
10 changed files with 33 additions and 1 deletions

View file

@ -1,2 +1,5 @@
# paceboard
Simple leaderboard site updated via bash scripts
Simple leaderboard site template updated via Python scripts!
Designed for use within speedrun communities.

BIN
assets/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

0
css/style.css Normal file
View file

26
index.html Normal file
View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tk-title</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="assets/img/logo.png">
<meta property="og:title" content="tk-title" />
<meta property="og:type" content="website" />
<meta property="og:description" content="tk-description" />
<meta property="og:url" content="tk-url" />
<meta property="og:image:secure_url" content="https://tk-url/assets/img/logo.png" />
<meta property="og:image:alt" content="tk-logo-alt" />
<meta property="og:locale" content="en_US" />
</head>
<body>
<p>Testing!</p>
</body>
</html>

3
runs/RUNS.md Normal file
View file

@ -0,0 +1,3 @@
# paceboard/runs
Directory for run pages created by `generate-runs.py`, corresponding to entries in `runs.xml`.

0
scripts/add-run.py Normal file
View file

View file

0
scripts/setup.py Normal file
View file

0
xml/config.xml Normal file
View file

0
xml/runs.xml Normal file
View file