-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·58 lines (49 loc) · 1.56 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
$apikeyfile = "./keyfile.json";
$apikeys = json_decode(file_get_contents($apikeyfile),true);
$calendarlink = $apikeys['googlecalendarlink'];
?>
<html>
<head>
<title>Magic Mirror</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./index.css"/>
</head>
<body>
<div id="datetime">
<div id="clock"></div>
<div id="date"></div>
</div>
<div class="flexwrap">
<div class="flexitem">
<div id="calendar">
<iframe id="googlecalendar" src=<?php echo $calendarlink; ?> style="height: 600px;" scrolling="no"></iframe>
<div class="fader"></div>
</div>
</div>
<div class="flexitem">
<div class="spacer"></div>
</div>
<div class="flexitem">
<div id="weatherwrap">
<h3>Current Weather in <span id="weatherarea"></span>:</h3>
<div id="weatherdata"></div>
</div>
<div id="quotewrap">
<p id="quote"></p>~<span id="author"></span>
</div>
</div>
<div class="flexitem">
<div class="spacer"></div>
<div id="thisdayinhistory">
<h3>This Day in History</h3>
<p id="history">History currently unavailable</p>
</div>
<!-- <div id="pics">
<img src="https://astrobioloblog.files.wordpress.com/2011/10/duck2.jpg">
</div> -->
</div>
</div>
</body>
<script src="./index.js"></script>
</html>