-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
59 lines (47 loc) · 1.85 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
<?php
//-----===Referenciando arquivos===-----
// Conexão com o banco de dados
require "src/Model/DBConnectionLocal.php";
// Classe produtos
require "src/Model/produto.php";
// Classe produtos do banco de dados
require "src/Model/produtoQuerys.php";
// Pega $pdo (cariavel de conexão com BD) pelo DBConnections e manda para produtoQuerys
$produtoQuerys = new produtoQuerys($pdo);
// Chamando Métodos (criação de card)
$lancamentos = $produtoQuerys->chamarLancamentos();
$promocoes = $produtoQuerys->chamarPromocoes();
$destaques = $produtoQuerys->chamarDestaques();
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OzzaTech</title>
<!--LINKS-->
<!--Google Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Krona+One&display=swap" rel="stylesheet">
<!--Own-->
<link rel="stylesheet" href="css/universal.css">
<link rel="stylesheet" href="css/index/card.css">
<link rel="stylesheet" href="css/index/banner.css">
</head>
<body>
<?php include "src/View/universal/header.php"?>
<main>
<article>
<?php include "src/View/index/carrossel-banner.php"?>
<?php include "src/View/index/carossel-lancamentos.php"?>
<?php include "src/View/index/carrossel-promocoes.php"?>
<?php include "src/View/index/carrossel-destaques.php"?>
</article>
</main>
<?php include "src/View/universal/footer.php"?>
</body>
<script src="/js/universal/headerScroll.js"></script>
<script src="/js/index/carrosselBanner.js"></script>
<script src="/js/index/carroselCards.js"></script>
</html>