MagicMirror/index.php

26 lines
862 B
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>
</head>
<body>
2014-02-24 11:19:51 +01:00
<div class="top left"><div class="date xsmall dimmed"></div><div class="time"></div></div>
2014-02-24 16:35:48 +01:00
<div class="top right"><div class="sun xsmall dimmed"></div><div class="temp"></div><div class="forecast xsmall dimmed"></div></div>
2014-02-25 16:40:32 +01:00
<div class="lower-third center-hor"><div class="compliment light"></div></div>
2014-02-24 11:19:51 +01:00
<div class="bottom center-hor"><div class="news small"></div></div>
2014-02-19 17:02:17 +01:00
</div>
<script src="js/jquery.js"></script>
<script src="js/jquery.feedToJSON.js"></script>
<script src="js/main.js?nocache=<?php echo md5(microtime()) ?>"></script>
</body>
</html>