-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (81 loc) · 2.98 KB
/
index.html
File metadata and controls
96 lines (81 loc) · 2.98 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Life calendar</title>
<meta name="description" content="Календарь жизни. Life calendar">
<meta name="author" content="Евгений Пакало">
<meta property="og:title" content="Life calendar | Календарь жизни" />
<meta property="og:description" content="Календарь жизни. Life calendar" />
<meta property="og:url" content="https://wcoder.github.io/life-calendar/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Life calendar" />
<meta property="og:locale" content="ru_RU" />
<!-- <link rel='stylesheet' href='styles.min.css?v=1.0'> -->
<link rel='stylesheet' type="text/css" href='vendor/bootstrap/css/bootstrap.min.css'>
<link rel='stylesheet' type="text/css" href='css/main.css'>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-3 hidden-print" id="calendar-settings">
<form>
<!-- <div class="form-group">
<label for="b-date" id="lang_set_birthday"></label>
<div id="sdate-picker">
<select id="sdate-day" class="form-control"></select>
<select id="sdate-month" class="form-control"></select>
<select id="sdate-year" class="form-control"></select>
</div>
</div> -->
<div class="form-group">
<label for="theme" id="lang_set_theme"></label>
<select class="form-control" id="theme">
<option value="0">Dark</option>
<option value="1">Light</option>
<option value="2">Red</option>
</select>
</div>
<div>
<iframe src="https://freesecure.timeanddate.com/clock/i7b3yhr2/n1045/fn7/fs20/fc900/tt0/tw0/tm1/tb4" frameborder="0" width="129" height="60"></iframe>
</div>
<!--
<div class="form-group">
<label for="lang" id="lang_select_lang"></label>
<select class="form-control" id="lang">
<option value="0">Русский</option>
<option value="1">English</option>
</select>
</div> -->
<!-- <div class="form-group">
<div>
<label for="" id="lang_save_print"></label>
</div>
<div class="btn-group">
<a href="#" class="btn btn-default" id="lang_save_jpg"></a>
<a href="#" class="btn btn-default" id="lang_save_pdf"></a>
<a href="#" class="btn btn-default" id="lang_print"></a>
</div>
</div> -->
</form>
</div>
<div class="col-md-9">
<div id="calendar-canvas"></div>
</div>
</div>
<!-- <div class="row hidden-print">
<div class="col-md-12">
<p class="text-center">
<small>© 2016 <a href="https://wcoder.github.io/">Евгений Пакало</a></small>
</p>
</div>
</div> -->
</div>
<!-- <script src="scripts.min.js?v=1.0"></script> -->
<script src="vendor/jspdf/jspdf.min.js"></script>
<script src="vendor/sdate/sdate.js"></script>
<script src="js/life-calendar.js"></script>
<script src="js/app.js"></script>
</body>
</html>