-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_N7RFE79A3S.php
47 lines (44 loc) · 1.05 KB
/
index_N7RFE79A3S.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
<!DOCTYPE html>
<html>
<head>
<title>Inicio</title>
<?php
include "head.php";
?>
</head>
<?php
include "header.php";
?>
<body>
HOLA
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="http://www.apps-fa.com/proyects/automatas/js/materialize.js"></script>
<script>
function hora()
{
var fecha = new Date();
var horas = fecha.getHours();
var minutos = fecha.getMinutes();
var segundos = fecha.getSeconds();
var horaActual = horas + ":" + minutos + ":" + segundos;
console.log(horaActual);
$("#time").html(horaActual);
setTimeout(hora, 1000);
}
hora();
</script>
<script>
$(document).ready(function(){
$('.carousel.carousel-slider').carousel({
fullWidth: true,
indicators: false
});
$('.sidenav').sidenav();
});
$("main").height($( window ).height());
</script>
</body>
</html>
<?php
echo "<mm:dwdrfml documentRoot=" . __FILE__ .">";$included_files = get_included_files();foreach ($included_files as $filename) { echo "<mm:IncludeFile path=" . $filename . " />"; } echo "</mm:dwdrfml>";
?>