-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
56 lines (44 loc) · 1.28 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Stream Monitor">
<meta name="author" content="Ronan Salieri">
<title>Moniteur de flux vidéo 0.3b</title>
<link href="css/bootstrap.css" rel="stylesheet">
<script src="js/bootstrap.js"></script>
<script src="js/jquery-3.6.0.js"></script>
</head>
<body>
<?php include('apropos.html') ?>
<?php include('aide.html') ?>
<div class="container">
<?php
include("menu.html");
?>
<div class="row">
<?php
$view = $_GET['view'];
if ($view=="") $view=4;
if ($view=="12") include('12views.php');
if ($view=="9") include('9views.php');
if ($view=="6") include('6views.php');
if ($view=="4") include('4views.php');
if ($view=="3") include('3views.php');
if ($view=="2") include('2views.php');
if ($view=="1") include('1view.php');
if ($view=="0") include('listview.php');
?>
</div>
<footer class="col-12 text-center">
<br>
Ronan Salieri - ronansalieri{[AT]}gmail.com - 2022 -
<a href="https://github.com/RonanSalieri" target="_new">Github</a>
</footer>
</div>
</body>
</html>
</body>
</html>