Dragon-Knight/server/templates/guide/layout.php

25 lines
675 B
PHP
Raw Normal View History

2024-07-02 12:40:18 -05:00
<!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>