-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathporquenos.php
60 lines (42 loc) · 2.07 KB
/
porquenos.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
<?php
$listar = listarTodosRegistros('carddest', 'idcarddest, titulo, descricao, cadastro, alteracao, ativo', 'A');
foreach($listar as $item){
$titulo_card_destaque = $item -> titulo;
$descricao_card_destaque = $item -> descricao;
}
?>
<section id="why-us" class="why-us section-bg">
<div class="container" data-aos="fade-up">
<div class="row gy-4">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="why-box">
<h3><?php echo $titulo_card_destaque; ?></h3>
<p>
<?php echo $descricao_card_destaque; ?>
</p>
<div class="text-center">
<a href="#" class="more-btn">Saiba Mais <i class="bx bx-chevron-right"></i></a>
</div>
</div>
</div><!-- End Why Box -->
<div class="col-lg-8 d-flex align-items-center">
<div class="row gy-4">
<?php
$lista2 = listarTodosRegistros('card', 'idcard, titulocard, descricaocard, cadastro, alteracao, icon, ativo', 'A');
foreach($lista2 as $item2){
$titulo_card = $item2 -> titulocard;
$descricao_card = $item2 -> descricaocard;
?>
<div class="col-xl-4" data-aos="fade-up" data-aos-delay="200">
<div class="icon-box d-flex flex-column justify-content-center align-items-center">
<i class="bi bi-clipboard-data"></i>
<h4><?php echo $titulo_card; ?></h4>
<p><?php echo $descricao_card; ?></p>
</div>
</div><!-- End Icon Box -->
<?php } ?>
</div>
</div>
</div>
</div>
</section><!-- End Why Us Section -->