]> git.lizzy.rs Git - dragonblocks.git/blob - index.php
Merge pull request #2 from Elidragon/master
[dragonblocks.git] / index.php
1 <!DOCTYPE php>
2 <html>
3         <head>
4                 <meta charset="utf-8">
5                 <link rel="icon" href="textures/icon.png">
6                 <link rel="stylesheet" href="style.css">
7                 <?php
8                         $libs = scandir("lib");
9                         for($i = 0; $i < count($libs); $i++){
10                                 if($libs[$i][0] == ".")
11                                         continue;
12                                 echo "<script src='lib/$libs[$i]'></script>";
13                         }
14                 ?>
15         <script defer src="engine/init.js"></script>
16         </head>
17         <body>
18                 <center id="elidragon">
19                         <img src="textures/elidragon.png" width="90%">
20                         <h3 id="elidragon.status">init.js</h3>
21                         <div style="border-style: solid; width: 90%; height: 50px; position:relative;" >
22                                 <div style="height: calc(100% - 10px); width: calc(100% - 10px); left: 5px; top: 5px; position:absolute">
23                                         <div style="background-color: yellow; height: 100%; left: 0px; top: 0px; position:absolute" id="elidragon.loadbar"></div>
24                                 </div>
25                         </div>
26                 </center>
27         </body>
28 </html>