PHP Classes

File: templates/layouts/game.php

Recommend this page to a friend!
  Classes of Vitalij Mik   PHP Map Tiler   templates/layouts/game.php   Download  
File: templates/layouts/game.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Map Tiler
Display maps using tile images on Web pages
Author: By
Last change: Update of templates/layouts/game.php
Date: 1 year ago
Size: 855 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en">
    <head>
        <title><?= $title ?></title>
        <meta charset="UTF-8"/>
        <base href="<?= BASE_URL.BASE_DIR ?>">
        <link rel="stylesheet" type="text/css" media="screen" href="assets/css/bootstrap.min.css">
        <link rel="stylesheet" type="text/css" media="screen" href="assets/css/all.min.css">
        <link rel="stylesheet" type="text/css" media="screen" href="assets/css/style.css">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <?= $styles ?>
</head>
    <body>

        <div class="container">
        <?= $content ?>
</div>
     
        <script src="assets/js/jquery.min.js"></script>
        <script src="assets/js/bootstrap.min.js"></script>
        <script src="assets/js/script.js"></script>
        <?= $scripts ?>
</body>
</html>