MagicMirror/index.php

33 lines
1.3 KiB
PHP
Raw Normal View History

2014-02-19 17:02:17 +01:00
<html>
<head>
<title>Magic Mirror</title>
2014-02-25 15:41:44 +01:00
<style type="text/css">
<?php include('css/main.css') ?>
</style>
2014-02-19 17:02:17 +01:00
<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" />
2014-05-19 21:30:21 +02:00
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
2014-02-19 17:02:17 +01:00
</head>
<body>
2014-02-27 13:51:18 +01:00
<div class="top left"><div class="date small dimmed"></div><div class="time"></div><div class="calendar xxsmall"></div></div>
<div class="top right"><div class="windsun small dimmed"></div><div class="temp"></div><div class="forecast small dimmed"></div></div>
2014-04-21 16:51:21 +02:00
<div class="center-ver center-hor"><div class="dishwasher light">Vaatwasser is klaar!</div></div>
2014-02-25 16:40:32 +01:00
<div class="lower-third center-hor"><div class="compliment light"></div></div>
2014-02-26 14:14:29 +01:00
<div class="bottom center-hor"><div class="news medium"></div></div>
2014-02-19 17:02:17 +01:00
</div>
<script src="js/jquery.js"></script>
<script src="js/jquery.feedToJSON.js"></script>
2014-02-26 14:14:29 +01:00
<script src="js/ical_parser.js"></script>
<script src="js/moment-with-langs.min.js"></script>
2014-02-19 17:02:17 +01:00
<script src="js/main.js?nocache=<?php echo md5(microtime()) ?>"></script>
2014-04-21 16:51:21 +02:00
<script src="//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.16/socket.io.min.js"></script>
2014-02-19 17:02:17 +01:00
</body>
2014-05-19 21:30:21 +02:00
</html>