MagicMirror/index.php

43 lines
1.8 KiB
PHP
Raw Permalink 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">
2016-01-25 21:59:15 +01:00
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
2014-02-19 17:02:17 +01:00
<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" />
2016-02-06 18:21:02 +01:00
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
2014-02-19 17:02:17 +01:00
</head>
<body>
2014-02-27 13:51:18 +01:00
<div class="top right"><div class="windsun small dimmed"></div><div class="temp"></div><div class="forecast small dimmed"></div></div>
2016-01-25 23:57:28 +01:00
<div class="top left"><div class="date small dimmed"></div><div class="time" id="time"></div><div class="calendar xxsmall"></div></div>
2015-04-05 11:44:40 +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>
2015-10-18 22:16:45 -04:00
<script src="js/moment-with-locales.min.js"></script>
<script src="js/config.js"></script>
<script src="js/rrule.js"></script>
2016-01-09 00:27:15 +00:00
<script src="js/version/version.js"></script>
<script src="js/calendar/calendar.js"></script>
<script src="js/compliments/compliments.js"></script>
<script src="js/weather/weather.js"></script>
<script src="js/time/time.js"></script>
<script src="js/news/news.js"></script>
2014-02-19 17:02:17 +01:00
<script src="js/main.js?nocache=<?php echo md5(microtime()) ?>"></script>
2015-04-05 11:44:40 +02:00
<!-- <script src="js/socket.io.min.js"></script> -->
<?php include(dirname(__FILE__).'/controllers/modules.php');?>
2014-02-19 17:02:17 +01:00
</body>
2016-01-25 21:59:15 +01:00
</html>