-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
61 lines (52 loc) · 1.38 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
57
58
59
60
61
<!DOCTYPE html>
<html lang="pt-br">
<!-- Definição do idioma do site -->
<head>
<?php
// ======================
// CONFIGURAÇÕES INICIAIS
// ======================
// Todas as configurações iniciais para funcionamento do site estão nas linhas a seguir.
// Site Núcleo MAP
// Autor: Emerson Martins Brito
// Data: 15/03/2021
include 'app/assets/head.php';
?>
</head>
<body class="l-body">
<header class="l-header">
<?php
include 'app/views/header.php';
?>
</header>
<aside class="l-aside js-open-menu">
<?php
include 'app/views/aside.php';
?>
</aside>
<main class="l-main">
<?php
$pagina = 'home';
$pagina = $_GET["pagina"];
switch ($pagina) {
case 'trade':
include 'app/views/trade.php';
break;
// case 'traders':
// include 'app/views/traders.php';
// break;
// case 'help':
// include 'app/views/help.php';
// break;
// case 'singup':
// include 'app/views/singup.php';
// break;
default:
include 'app/views/home.php';
break;
}
?>
</main>
<script src="app/assets/js/index.js"></script>
</body>
</html>