🎨 starts cleaning code before adding labyrinth generation
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
$file = isset($_GET['level']) ? $_GET['level'] : null;
|
||||
$file = $_GET['level'] ?? null;
|
||||
$custom = 'false';
|
||||
$niveau = '1';
|
||||
if ($file !== null && file_exists(__DIR__ .'/custom/'.$file.'.js')){
|
||||
@@ -8,8 +8,9 @@ if ($file !== null && file_exists(__DIR__ .'/custom/'.$file.'.js')){
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Blind Laby</title>
|
||||
<link rel="stylesheet" type="text/css" href="assets/css/index.css" />
|
||||
<link rel="stylesheet" type="text/css" href="assets/css/css3buttons.css" />
|
||||
<style>
|
||||
|
Reference in New Issue
Block a user