-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (57 loc) · 2.14 KB
/
index.html
File metadata and controls
69 lines (57 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>calender</title>
<meta name="description" content="calender widget">
<meta name="author" content="April Gray">
<link href="https://fonts.googleapis.com/css?family=Milonga" rel="stylesheet">
<link href="./css/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
<link href="./css/print.css" media="print" rel="stylesheet" type="text/css" />
<!--[if IE]>
<link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
<![endif]-->
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<div id="calender">
<div class="header"></div>
<div class="table"></div>
<div class="footer">
<!--<div title="Customize Theme" class="icon" id="customizeIcon"><img class="inject-me" src="img/theme.svg"></div>-->
<div class="credits">Icons made by <a href="http://www.freepik.com" title="Freepik">
Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>
is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">
CC 3.0 BY</a></div></div>
</div>
<div class="menu wrapper hidden">
<div class="menu box">
<div class="menu header">
<span class="menu close btn">×</span>
<h2 class"menu title"></h2>
</div>
<div class="menu main">
<div class="menu background"></div>
<div class="menu content"></div>
</div>
<div class="menu footer">
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<!--Librarys-->
<script src="src/libs/svg-injector.min.js"></script>
<!-- -->
<script>
// Elements to inject
var mySVGsToInject = document.querySelectorAll('img.inject-me');
// Do the injection
SVGInjector(mySVGsToInject);
</script>
<script src="global.js"></script>
<script src="calender.js"></script>
</html>