forked from Ar4ys/sch17
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
32 lines (32 loc) · 981 Bytes
/
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
<!DOCTYPE html>
<?include 'spa.php';
if (isset($_GET[a])) $content = $_GET[a];
else $content = index;?>
<html>
<head>
<title>9-V</title>
<link rel='stylesheet' type='text/css' href='style.css'>
<link rel='shortcut icon' href='img/favicon.ico' type='image/x-icon'>
<meta name='viewport' content='width=device-width'>
</head>
<body id='body'>
<div id='container'>
<div style='height: 100px;'></div>
<div id='condiv'>
<div id='menu'>
<a class='menu' href='/'><b>Новини</b></a>
<a class='menu brl' href='?a=timetable'><b>Розклад</b></a>
<a class='menu brl' href='?a=teachers'><b>Вчителі</b></a>
<a class='menu brl' href='?a=books'><b>Книги</b></a>
</div>
<div id='main' class='clearfix'>
<?content($content);?>
</div>
</div>
</div>
</body>
<script>
body.removeChild(document.querySelector('.cbalink'));
body.removeChild(document.querySelector('.cumf_bt_form_wrapper'));
</script>
</html>