-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoticias.php
51 lines (38 loc) · 1.13 KB
/
noticias.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
<?php require_once "config.php"; ?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/stylo.css">
<link rel="stylesheet" type="text/css" href="css/noticia.css">
<title>Aula 7 - Bem Vindo</title>
<?php include "layout/head.php"; ?>
</head>
<body>
<header id="topo">
<?php require "layout/topo.php"; ?>
</header>
<?php include_once "layout/banner.php"; ?>
<main>
<div class="conteudo">
<?php
$where = " publicado = 1 AND categoria = 'Notícias' ";
$noticias = resultados($conexao, "paginas", $where); ?>
<?php foreach ($noticias as $noticia) { ?>
<link rel="stylesheet" type="text/css" href="css/noticia.css">
<div class='capsulanoticia'>
<div class='divnoticia'>
<h2 ><a class='titulonoticia' href="paginas.php?pagina=<?php echo $noticia['id']; ?>">
<?php echo $noticia['titulo']; ?></a></h2>
</div>
<div>
<img class='imgnoticia' src="admin/imagens/imagens-pagina/<?php echo $noticia['imagem']; ?>">
</div>
</div>
<?php } ?>
</div>
</main>
<footer>
<?php include "layout/footer.php"; ?>
</footer>
</body>
</html>