-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
78 lines (72 loc) · 3.01 KB
/
index.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
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
76
77
78
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Todayis ???</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/font-awesome.min.css" media="screen">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="./javascripts/todayis.js"></script>
<script src="./javascripts/moment.js"></script>
<script src="./javascripts/calendar.js"></script>
<script src="./javascripts/main.js"></script>
</head>
<body>
<span class="top-header">
<i class="fa fa-th" aria-hidden="true"></i>
<i class="fa fa-calendar" aria-hidden="true"></i>
</span>
<section class="page-header">
<h1 class="project-name">Todayis</h1>
<div class="project-body"><h2 class="project-tagline"><div><i class="fa fa-question"></i><i class="fa fa-question"></i><i class="fa fa-question"></i></h2></div>
<a href="https://github.com/theo92hoo/todayis" class="btn">View on GitHub</a>
<a href="https://github.com/theo92hoo/todayis/zipball/master" class="btn">Download .zip</a>
<a href="https://github.com/theo92hoo/todayis/tarball/master" class="btn">Download .tar.gz</a>
</section>
<section class="main-content">
<div class="calendar">
<div class="calendarTop">
<div class="flex" style="flex-grow:7">
<div class="row">
<i class="calendar-previous-month fa fa-caret-left fa-lg"></i>
<i class="calendar-next-month fa fa-caret-right fa-lg"></i>
<span id="month">Month</span>
</div>
<div class="row">
<i class="calendar-previous-day fa fa-caret-left fa-lg"></i>
<i class="calendar-next-day fa fa-caret-right fa-lg"></i>
<span id="day">Day</span>
</div>
</div>
<div class="flex" style="flex-grow:5">
<div>
<i class="calendar-next-year fa fa-caret-up fa-lg"></i>
<div id="year">Year</div>
<i class="calendar-previous-year fa fa-caret-down fa-lg"></i>
</div>
</div>
</div>
<table class="calendar-table">
<thead>
<tr class="header-days">
<td class="header-day">SUN</td>
<td class="header-day">MON</td>
<td class="header-day">TUE</td>
<td class="header-day">WED</td>
<td class="header-day">THU</td>
<td class="header-day">FRI</td>
<td class="header-day">SAT</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<footer class="site-footer">
<span class="site-footer-owner"><a href="https://github.com/theo92hoo/todayis">Todayis ???</a> is maintained by <a href="https://github.com/theo92hoo">theo92hoo</a>.</span>
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a> by <a href="https://twitter.com/jasonlong">Jason Long</a>.</span>
</footer>
</section>
</body>
</html>