-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
72 lines (48 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php $assets = "assets"; ?>
<!DOCTYPE HTML>
<html>
<head>
<title>Jake Gibson Expensify</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="<?php echo $assets ?>/style/ivory.css" media="all">
<link rel="stylesheet" type="text/css" href="<?php echo $assets ?>/style/style.css" media="screen">
<!-- For Date picker only -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script src="<?php echo $assets ?>/js/helpers.js"></script>
<script src="<?php echo $assets ?>/js/router.js"></script>
<script src="<?php echo $assets ?>/js/action.js"></script>
<script src="<?php echo $assets ?>/js/client.js"></script>
<body onhashchange="router()">
<div id="topSection">
<div class="row space-bot">
<div class="c4 logo">
<a href="expensify.j3.io"> <img src="<?php echo $assets ?>/img/logo.png" /> </a>
</div>
<div class="c4 menu right" />
<ul id="topMenu"></ul>
</div>
</div>
</div>
<div id="midSection">
<div class="g1024 space-bot">
<!-- AJAX content loader section -->
<div id="msgArea"></div>
<div id="content"></div>
</div>
</div>
<div id="footerSection">
<div class="g1024 space-bot">
<div class="row space-bot">
<div class="c6 first">
<p>Developed by <a href="mailto:[email protected]">Jake Gibson</a> </p>
</div>
<div class="c6 last text-right">
<p>Expensify TEST</p>
</div>
</div>
</div>
</div>
</body>
</html>