-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_list.html
119 lines (111 loc) · 6.25 KB
/
index_list.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="List of Lunar, National and International Events with Public Holidays observed in Nepal" />
<meta name="keywords" content="brihat, ratna, bajracharya, events, public holidays, events, national, lunar, international, brihat events, list" />
<meta name="author" content="Brihat Ratna Bajracharya" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Brihat Ratna Bajracharya" />
<meta property="og:image" content="./assets/brihat_events_logo.png" />
<meta property="og:type" content="blog" />
<meta property="og:site_name" content="Brihat List of Events" />
<meta property="og:url" content="https://events.brihatrb.com.np/index_list" />
<meta property="og:description" content="Brihat Events' List" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@Brihat9" />
<meta name="twitter:title" content="Brihat List of Events" />
<meta name="twitter:description" content="List of Lunar, National and International Events with Public Holidays observed in Nepal" />
<meta name="twitter:image" content="./assets/brihat_events_logo.png" />
<meta name="twitter:image:alt" content="Brihat Events' List" />
<link rel="icon" href="./assets/favicon.ico" type="image/x-icon" />
<title>Event List | Lunar, National, International, Other</title>
<link rel="stylesheet" type="text/css" href="./css/index.css"/>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"/>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css" crossorigin="anonymous"/>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/2.5.0/css/responsive.dataTables.min.css" crossorigin="anonymous"/>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/fixedheader/3.4.0/css/fixedHeader.dataTables.min.css" crossorigin="anonymous"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Laila&display=swap" />
<style>
* {
font-variant: normal;
font-weight: bold;
font-size: small;
font-family: "Laila";
}
.table, .table-primary, .table-success, .table-danger, .table-warning, .table-info, .table-light {
--bs-table-striped-color: none;
--bs-table-hover-color: none;
}
#event_year {
border: none;
appearance: none;
background-color: white;
}
#event_year:hover {
cursor: pointer;
border-bottom: 2px solid red;
}
</style>
</head>
<body onload="loading_anim();">
<div id="loading">
<img id="loading_anim" src="./assets/loading_anim.svg" alt="Populating Events ..." />
<span id="loading_title">List of Events</span>
<noscript>Please enable JavaScript and reload</noscript>
</div>
<h4 class="text-success text-center fw-bold">List of Lunar, National, International, and Other Events w/ Holiday Information
<br/>(for <span id="event_year_span" class="fs-4">
<select id="event_year" onchange="change_list(this.value);" class="text-success" title="Change BS Year">
<option value="2076">2076</option>
<option value="2077">2077</option>
<option value="2078">2078</option>
<option value="2079">2079</option>
<option value="2080" selected>2080</option>
<option value="2081">2081</option>
</select>
</span> B.S.)
</h4>
<table id="event_table" class="table table-sm table-primary table-striped table-hover table-borderless" style="width:100%">
<thead class="table-dark table align-middle">
<tr>
<th class="text-center" scope="col">#</th>
<th class="text-center" scope="col">Date</th>
<!-- <th scope="col">Lunar Info</th> -->
<th scope="col">Lunar Event(s)</th>
<th scope="col">National Event(s)</th>
<th scope="col">International Event(s)</th>
<th scope="col">Other Event(s)</th>
<th scope="col">Holiday Remark</th>
</tr>
</thead>
<tbody id="table_body" class="table-group-divider"></tbody>
<tfoot class="table-dark text-center">
<tr>
<td colspan="7" class="text-center">
Compiled By Brihat (reachme@brihatrb.com.np)
</td>
</tr>
</tfoot>
</table>
<div class="text-center">
<a class="text-decoration-none" href="https://events.brihatrb.com.np/">Go back to Main Site</a>
</div>
<script>
function loading_anim() {
document.getElementById('loading').style.display = "none";
}
</script>
<script type="text/javascript" src="https://calendar.brihatrb.com.np/js/base/NS.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://calendar.brihatrb.com.np/js/base/NS_AD.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://calendar.brihatrb.com.np/js/base/NS_BS.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://calendar.brihatrb.com.np/js/base/AD_BS.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="./js/event_list.js"></script>
<script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.datatables.net/fixedheader/3.4.0/js/dataTables.fixedHeader.min.js" type="text/javascript" crossorigin="anonymous"></script>
<script src="https://cdn.datatables.net/responsive/2.5.0/js/dataTables.responsive.min.js" type="text/javascript" crossorigin="anonymous"></script>
<script type="text/javascript" src="./js/index_list.js"></script>
</body>
</html>