101 lines
3.9 KiB
PHP
101 lines
3.9 KiB
PHP
<!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">
|
|
|
|
|
|
|
|
<!--MATERIALIZE-->
|
|
<!--Import jQuery-->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
|
<!--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"/>
|
|
|
|
<!--My Custom Stylesheet-->
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class=row>
|
|
<?php
|
|
foreach (glob("roles/*.php") as $filename) {
|
|
include $filename;
|
|
echo '
|
|
<div class="col s12 m6">
|
|
<div class="blurry">
|
|
<div class="card '.$color.' '.$tcolor.'-text">
|
|
<div class="card-content">
|
|
<span class="card-title">'.$name.'</span>"
|
|
<p>'.$description.'</p>
|
|
</div>
|
|
<div class="card-tabs">
|
|
<ul class="tabs tabs-fixed-width">
|
|
<li class="tab col s3">
|
|
<a class="active" href="#'.$name.'h2p">How to play</a>
|
|
</li>
|
|
<li class="tab col s3">
|
|
<a href="#'.$name.'pbw">Plays best with</a>
|
|
<li class="tab col s3">
|
|
<a href="#'.$name.'convars">Convars</a>
|
|
</li>
|
|
<li class="tab col s3">
|
|
<a href="#'.$name.'credits">Convars</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="card-content grey lighten-4 black-text">
|
|
<div id="'.$name.'h2p">'.$howtoplay.'</div>
|
|
<div id="'.$name.'pbw">'.$playsbestwith.'</div>
|
|
<div id="'.$name.'convars"><code>'.$convars.'</code></div>
|
|
<div id="'.$name.'credits"><h1>Main Creator: <a href="'.$authorurl.'">'.$author.'</a></h1>'.$ctext.'</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
';
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('.tabs').tabs();
|
|
});
|
|
</script>
|
|
<!--
|
|
<div class="card-content">
|
|
<p>'.$description.'</p>
|
|
</div>
|
|
<div class="card-tabs">
|
|
<ul class="tabs">
|
|
</ul>
|
|
</div>
|
|
<div class="card-content '.$tcolor.'-text">
|
|
<span class="card-title">'.$name.'</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
-->
|
|
|
|
|
|
|
|
|
|
<!--JavaScript at end of body for optimized loading-->
|
|
<script type="text/javascript" src="js/materialize.min.js"></script>
|
|
</body>
|
|
</html>
|