Initialize repo
This commit is contained in:
parent
5bf193e59b
commit
f52d616931
10 changed files with 33 additions and 1 deletions
|
@ -1,2 +1,5 @@
|
||||||
# paceboard
|
# 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
BIN
assets/img/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
0
css/style.css
Normal file
0
css/style.css
Normal file
26
index.html
Normal file
26
index.html
Normal 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
3
runs/RUNS.md
Normal 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
0
scripts/add-run.py
Normal file
0
scripts/generate-board.py
Normal file
0
scripts/generate-board.py
Normal file
0
scripts/setup.py
Normal file
0
scripts/setup.py
Normal file
0
xml/config.xml
Normal file
0
xml/config.xml
Normal file
0
xml/runs.xml
Normal file
0
xml/runs.xml
Normal file
Loading…
Reference in a new issue