-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoday.html
45 lines (43 loc) · 1.56 KB
/
today.html
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
<!DOCTYPE html>
<html>
<head>
<title>Google Calendar, I guess</title>
<meta charset="utf-8" />
<link rel="stylesheet/less" type="text/css" media="all" href="css/gridpak.less" />
<link rel="stylesheet/less" type="text/css" media="all" href="css/style.less" />
<link rel="stylesheet/less" type="text/css" media="all" href="css/butons.less" />
<link rel="stylesheet/less" type="text/css" media="all" href="css/icons.less" />
<link rel="stylesheet/less" type="text/css" media="all" href="css/header.less" />
<link rel="stylesheet/less" type="text/css" media="all" href="css/aside.less" />
<link rel="stylesheet/less" type="text/css" media="all" href="css/section.less" />
<script src="javascript/less-1.3.1.min.js"></script>
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="javascript/mustache.js"></script>
<script src="javascript/common.js"></script>
<!--<script src="javascript/gridpak.js"></script>-->
<script>
$(function(){
renderPage(
"data/general.json",
"templates/header.mustache",
$("header")
);
renderPage(
"data/general.json",
"templates/aside.mustache",
$("aside")
);
renderPage(
"data/general.json",
"templates/sectionToday.mustache",
$("section")
);
});
</script>
</head>
<body>
<header></header>
<aside></aside>
<section></section>
</body>
</html>