Initial commit

This commit is contained in:
Jesse James Isler 2022-03-27 21:17:31 +02:00
commit f9de3e3127
7 changed files with 21515 additions and 0 deletions

9067
css/materialize.css vendored Normal file

File diff suppressed because it is too large Load Diff

13
css/materialize.min.css vendored Normal file

File diff suppressed because one or more lines are too long

0
css/styles.css Normal file
View File

46
index.php Normal file
View File

@ -0,0 +1,46 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TTT2 Role Overview</title>
<meta name="description" content="All TTT2 Roles halfheartedly documented">
<meta name="author" content="James">
<meta property="og:title" content="TTT2 Role Overview">
<meta property="og:type" content="website">
<meta property="og:url" content="https://ttt.james-things.com">
<meta property="og:description" content="All TTT2 Roles documented halfheartedly">
<meta property="og:image" content="https://e7.pngegg.com/pngimages/710/403/png-clipart-the-embodiment-of-scarlet-devil-team-shanghai-alice-video-game-banjo-tooie-mario-luigi-partners-in-time-marisa-logo-computer-wallpaper.png">
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!--My Custom Styleshit-->
<link rel="stylesheet" href="css/styles.css?v=1.0">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
</head>
<body>
<?php
include "./rolecolors.php";
foreach (glob("roles/*.php") as $filename) {
printf('
<div class="row">
<div class="col s12 m6">
<div class="card blue-grey darken-1">
<div class="card-content white-text">
<span class="card-title">
');
printf(substr($filename, 6, -4));
printf("</span>");
include $filename;
printf('
</div>
</div>
</div>
');
}
?>
</body>
</html>

12374
js/materialize.js vendored Normal file

File diff suppressed because it is too large Load Diff

6
js/materialize.min.js vendored Normal file

File diff suppressed because one or more lines are too long

9
roles/Example.php Normal file
View File

@ -0,0 +1,9 @@
<?php
# This is the color defined by https://materializecss.com/color.html
$color = "yellow lighten-5"
#
#The Steam URL to your addon
$steam = "https://steamcommunity.com/sharedfiles/filedetails/?id=2004491494"
?>