-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
75 lines (71 loc) · 3.45 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
require "src/conexao-bd.php";
require "src/Modelo/Produto.php";
require "src/Repositorio/ProdutoRepositorio.php";
$produtoRepositorio = new ProdutoRepositorio($pdo);
$dadosCafe = $produtoRepositorio->findProdutosByTipo('Café');
$dadosAlmoco = $produtoRepositorio->findProdutosByTipo('Almoço');
?>
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="icon" href="img/icone-serenatto.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap" rel="stylesheet">
<title>Serenatto - Cardápio</title>
</head>
<body>
<main>
<section class="container-banner">
<div class="container-texto-banner">
<img src="img/logo-serenatto.png" class="logo" alt="logo-serenatto">
</div>
</section>
<h2>Cardápio Digital</h2>
<section class="container-cafe-manha">
<div class="container-cafe-manha-titulo">
<h3>Opções para o Café</h3>
<img class="ornaments" src="img/ornaments-coffee.png" alt="ornaments">
</div>
<div class="container-cafe-manha-produtos">
<?php foreach ($dadosCafe as $cafe): ?>
<div class="container-produto">
<div class="container-foto">
<img src="<?= $cafe->getImagemComDiretorio() ?>">
</div>
<p><?= $cafe->getNome() ?></p>
<p><?= $cafe->getDescricao() ?></p>
<p><?= $cafe->getPrecoFormatado() ?></p>
</div>
<?php endforeach; ?>
</section>
<section class="container-almoco">
<div class="container-almoco-titulo">
<h3>Opções para o Almoço</h3>
<img class="ornaments" src="img/ornaments-coffee.png" alt="ornaments">
</div>
<div class="container-almoco-produtos">
<?php foreach ($dadosAlmoco as $almoco): ?>
<div class="container-produto">
<div class="container-foto">
<img src="<?= $almoco->getImagemComDiretorio() ?>">
</div>
<p><?= $almoco->getNome() ?></p>
<p><?= $almoco->getDescricao() ?></p>
<p><?= $almoco->getPrecoFormatado() ?></p>
</div>
<?php endforeach; ?>
</div>
</section>
</main>
</body>
</html>