-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsobre.php
More file actions
22 lines (19 loc) · 756 Bytes
/
sobre.php
File metadata and controls
22 lines (19 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<title>Sobre - Code Forge</title>
<?php $pagina = 'SOBRE' ?>
<?php require_once('includes/head.php'); ?>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/js/all.min.js">
<link rel="stylesheet" href="assets/css/paginas.css">
</head>
<body data-spy="scroll" data-target="#navbar" class="static-layout">
<?php require_once('includes/top.php'); ?>
<main>
<?php require_once('includes/about.php'); ?>
</main>
<?php require_once('includes/footer.php'); ?>
<?php require_once('includes/script.php'); ?>
</body>
</html>