25 lines
675 B
PHP
25 lines
675 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?= $title ?> | Guide</title>
|
|
<link rel="stylesheet" href="/css/dragon.css">
|
|
</head>
|
|
<body>
|
|
<a name="top"></a>
|
|
<div id="container">
|
|
<h1><?= $control['game_name'] ?> Guide</h1>
|
|
<?php if ($title !== 'Main'): ?>
|
|
<h2><?= $title ?></h2>
|
|
[ <a href="help.php">Return to Help</a> | <a href="index.php">Return to the game</a> ]
|
|
<?php else: ?>
|
|
[ <a href="index.php">Return to the game</a> ]
|
|
<?php endif; ?>
|
|
|
|
<hr class="my-2">
|
|
|
|
<?= render("guide/$guide", $data) ?>
|
|
</div>
|
|
</body>
|
|
</html>
|