-
Notifications
You must be signed in to change notification settings - Fork 0
/
politica-privacidad.php
52 lines (40 loc) · 1.56 KB
/
politica-privacidad.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
<!DOCTYPE html>
<html lang="es">
<head>
<title>Política de Privacidad | Sistema de prestamo de equipos de computo</title>
<!-- Meta -->
<?php include("./templates/etiquetas-meta.php"); ?>
<!-- Icono -->
<link rel="shortcut icon" href="img/favicon.svg" type="image/x-icon">
<!-- Rel Bootstrap -->
<?php include("./templates/librerias-head.php"); ?>
<!-- Estilos -->
<link href="css/style.min.css" rel="stylesheet">
</head>
<body>
<!-- Navbar Inicio -->
<?php include("./templates/header.php");
?>
<!-- Navbar Fin -->
<!-- Página Encabezado Inicio -->
<div class="mb-5 container-fluid page-header position-relative ">
<div class="pt-0 pt-2 d-flex flex-column align-items-center justify-content-center pt-lg-5" style="min-height: 200px">
<h1 class="mt-0 mb-3 text-white display-4 mt-lg-5 text-uppercase">Política de Privacidad</h1>
<div class="d-inline-flex mb-lg-5">
<p class="m-0 text-white"><a class="text-white" href="index.php">Inicio</a></p>
<p class="px-2 m-0 text-white">/</p>
<p class="m-0 text-white">Política de Privacidad</p>
</div>
</div>
</div>
<!-- Página Encabezado Fin -->
<!-- Servicios Inicio -->
<?php include("./templates/views/politica-privacidad.php"); ?>
<!-- Servicios Fin -->
<!-- Footer Inicio -->
<?php include("./templates/footer.php"); ?>
<!-- Footer Fin -->
<!-- JavaScript Libraries -->
<?php include("./templates/librerias-js.php"); ?>
</body>
</html>