-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
75 lines (53 loc) · 1.74 KB
/
index.php
File metadata and controls
75 lines (53 loc) · 1.74 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php include("phpIncludes/header.php") ?>
<section id="smartMirrorHome" class="container">
<div class="card-group">
<!--Ana and 24hr Time-->
<div id="topLeftCard" class="card">
<div class="card-body">
<div id="anaClock" class="card-group">
<div class="container" class="anaClock">
<div id="belfastClock">
<div class="hand" id="belfastHourHand"></div>
<div class="hand minHand" id=""></div>
<div class="hand secHand" id=""></div>
<h2>Belfast<hr></h2>
<div id="belfastDigi"></div>
</div>
</div>
</div>
</div>
</div>
<!--Weather-->
<div id="topRightCard" class="card">
<div class="card-body">
<div id="weather">
<h1 id="weatherTitle">Weather Today</h1>
<h4 id="date"><?php echo date("l jS F Y"); ?></h4>
<br>
<p id="summary"></p>
<img id="icon"></img>
<p id="percipProb"></p>
<p id="temp"></p>
<p id="windSpeed"></p>
</div>
</div>
</div>
</div>
<!--Clear part used for mirror-->
<div id="mirrorPart"></div>
<!--News-->
<div id="news">
<div id="newsPlayer"></div>
</div>
<!--Spotify-->
<div id="spotify">
<img id="spotifyLogo" src="/img/spotifyLogo.png">
<p>Currently listening to: <p id="track"></p> on Sams's Spotify</p>
<img id="artwork">
</div>
<!--Daily Cat Facts-->
<div id="facts" class="">
<p id="catFact"></p>
</div>
</section>
<?php include("phpIncludes/footer.php") ?>