-
Notifications
You must be signed in to change notification settings - Fork 0
/
servicios.php
60 lines (46 loc) · 1.66 KB
/
servicios.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
<!DOCTYPE html>
<html lang="es">
<head>
<title>Servicios | 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 class="d-flex flex-column min-vh-100">
<!-- Navbar Inicio -->
<div class>
<?php include("./templates/header.php");
?>
</div>
<!-- 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">Servicios</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">Servicios</p>
</div>
</div>
</div>
<!-- Página Encabezado Fin -->
<!-- Servicios Inicio -->
<div class="flex-grow-1">
<?php include("./templates/views/servicios.php"); ?>
</div>
<!-- Servicios Fin -->
<!-- Footer Inicio -->
<div class="mt-auto">
<?php include("./templates/footer.php"); ?>
</div>
<!-- Footer Fin -->
<!-- JavaScript Libraries -->
<?php include("./templates/librerias-js.php"); ?>
</body>
</html>