forked from MagicMirrorOrg/MagicMirror
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
34 lines (31 loc) · 1.52 KB
/
index.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
<html>
<head>
<title>Magic Mirror</title>
<style type="text/css">
<?php include('css/main.css') ?>
</style>
<link rel="stylesheet" type="text/css" href="css/weather-icons.css">
<script type="text/javascript">
var gitHash = '<?php echo trim(`git rev-parse HEAD`) ?>';
</script>
<meta name="google" value="notranslate" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
</head>
<body>
<div class="top left"><div id="date" class="small dimmed"></div><div id="time"></div><div id="calendar" class="xxsmall"></div></div>
<div class="top right"><div id="windsun" class="small dimmed"></div><div id="temp"></div><div id="forecast" class="small dimmed"></div></div>
<div class="lower-third center-hor"><div id="compliment" class="light"></div></div>
<div class="bottom center-hor"><div id="news" class="medium"></div></div>
<script src="js/lib/jquery.min.js"></script>
<script src="js/contrib/jquery.feedToJSON.js"></script>
<script src="js/contrib/ical_parser.js"></script>
<script src="js/lib/moment-with-langs.min.js"></script>
<script src="js/lib/socket.io.min.js"></script>
<script>var magicMirror = {};</script><?php /* namespace for Magic Mirror */ ?>
<script src="js/config.js"></script>
<script src="js/calendar.js?nocache=<?php echo md5(microtime()) ?>"></script>
<script src="js/news.js?nocache=<?php echo md5(microtime()) ?>"></script>
<script src="js/weather.js?nocache=<?php echo md5(microtime()) ?>"></script>
<script src="js/main.js?nocache=<?php echo md5(microtime()) ?>"></script>
</body>
</html>