-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
26 lines (26 loc) · 1.04 KB
/
footer.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
<div class="logoWrapper">
<img class="logo" src="/media/AD.png" height="200" width="200" alt="A+D">
</div>
<footer>
<span class="countdown"><?php
$date = strtotime("June 21, 2014 11:59 PM");
$remaining = $date - time();
$days = floor($remaining / 86400);
if ($days > 1) {
echo "See you in " . $days . " days!";
} else if ($days == 1) {
echo "See you tomorrow!";
} else if ($days == 0) {
echo "Today's the day!";
} else {
echo "Thanks for coming!";
}
?></span>
<span class="madeBy"><i class="tools"></i><span class="whom">Site built by <a href="http://www.david-sawyer.com">David Sawyer</a>. Branding by <a href="http://kimberlyoldenburg.com/">Kimmie Oldenburg</a>.</span></span>
</footer>
<script>
mixpanel.track('page viewed', {
'page name' : document.title,
'url' : window.location.pathname
});
</script>