Initial styling, format tweaks

This commit is contained in:
Zachary Talis 2021-06-23 11:47:10 -04:00
parent 0429cbdd17
commit d069a02040
3 changed files with 40 additions and 0 deletions

7
templates/TEMPLATES.md Normal file
View file

@ -0,0 +1,7 @@
# paceboard/templates
Directory for template files used to generate:
* The index page
* The category pages
* The run pages

1
templates/css Symbolic link
View file

@ -0,0 +1 @@
/d/cm/code/repos/paceboard/css

32
templates/index.html Normal file
View file

@ -0,0 +1,32 @@
<!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 - Speedruns Board</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="assets/img/logo.png">
<meta property="og:title" content="tk-game - Speedruns Board" />
<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" />
<!-- Placeholder og:locale, replace content with your own if desired. -->
<meta property="og:locale" content="en_US" />
</head>
<body>
<h1>tk-game - Speedruns Board</h1>
<p>tk-description</p>
<h2>Categories</h2>
<!-- lk-categories -->
</body>
</html>