-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
61 lines (51 loc) · 2.06 KB
/
index.php
File metadata and controls
61 lines (51 loc) · 2.06 KB
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
61
<!DOCTYPE html>
<html lang="es">
<head>
<title>Inicio | 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 -->
<!-- Carousel Inicio -->
<?php include("./templates/components/carousel.php"); ?>
<!-- Carousel Fin -->
<!-- Contacto Inicio -->
<div class="section-title">
<h2 class="text-primary text-uppercase" style="letter-spacing: 5px;">Contactanos</h2>
<?php include("./templates/views/contacto.php"); ?>
</div>
<!-- Contacto Fin -->
<!-- Empleados Inicio -->
<div class="section-title">
<h2 class="text-primary text-uppercase" style="letter-spacing: 5px;">Equipo de Trabajo</h2>
<?php include("./templates/views/empleados.php"); ?>
</div>
<!-- Empleados Fin -->
<!-- Comentarios Inicio -->
<div class="section-title">
<h2 class="text-primary text-uppercase" style="letter-spacing: 5px;">Comentarios</h2>
<?php include("./templates/views/comentarios.php"); ?>
</div>
<!-- Comentarios Fin -->
<!-- Footer Inicio -->
<?php include("./templates/footer.php"); ?> <!-- Footer Fin -->
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/tempusdominus/js/moment.min.js"></script>
<script src="lib/tempusdominus/js/moment-timezone.min.js"></script>
<script src="lib/tempusdominus/js/tempusdominus-bootstrap-4.min.js"></script>
<script src="js/cardDeslizarElementos.js"></script>
</body>
</html>