-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
138 lines (108 loc) · 3.84 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html>
<head>
<meta name="theme-color" content="#000">
<meta name="msapplication-navbutton-color" content="#000">
<meta name="apple-mobile-web-app-status-bar-style" content="#000">
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>DotSlash | Home</title>
<!-- links -->
<link rel="stylesheet" type="text/css" href="libs/bulma.css">
<link rel="stylesheet" type="text/css" href="css/home.css">
<link rel="stylesheet" type="text/css" href="assets/icons/fontello/css/fontello-embedded.css">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar is-transparent">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<img src="assets/icons/dotSlash.png">
</a>
<div class="navbar-burger burger" data-target="navbar-content">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div id="navbar-content" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item" href="index.html">
Events
</a>
<a class="navbar-item" href="https://github.com/DotSlashCommunity">
Projects
</a>
<a class="navbar-item" href="contrib.html">
Contributors
</a>
</div>
</div>
</nav>
<div class="extra-white-space not-for-mobile"></div>
<!-- Title -->
<div class="columns title-main">
<span>
<i class="icon-quote-left title-quote-big"></i>
DotSlash Community is a technical club run by students of Delhi Technical Campus working under Computer Science department's society, Computer Engineering Students Technical Association (CESTA), formed for the welfare of students who are enthusiastic and always ready to learn new computer technologies. DotSlash Community helps others by believing in open culture where a student should help his peers.
<i class="icon-quote-right title-quote-big"></i>
</span>
</div>
<!-- Separator -->
<hr class="separator-main">
<div class="extra-white-space"></div>
<center><p class="title is-4">Upcoming Events</p></center>
<div class="extra-white-space not-for-mobile"></div>
<!-- Cards -->
<div class="columns card-main">
<div class="column"></div>
<div class="column has-centered-text">
<div class="card card-ext">
<a href="http://bots.dotslashcommunity.com/">
<img src="assets/pics/bots.jpeg">
</a>
</div>
</div>
<div class="column has-centered-text">
<div class="card card-ext">
<a href="http://idc.dotslashcommunity.com/">
<img src="assets/pics/idc.jpeg">
</a>
</div>
</div>
<div class="column"></div>
</div>
<div class="extra-white-space large not-for-mobile"></div>
<!-- Footer -->
<div class="footer-main">
<center>
<span class="footer-main-container">
<a href="https://github.com/DotSlashCommunity" target="blank">
<i class="icon-github-circled"></i>
</a>
<i class="icon-heart red-color"></i>
</span>
</center>
</div>
<!-- Scripts -->
<script>
document.addEventListener('DOMContentLoaded', function () {
// Get all "navbar-burger" elements
var $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Check if there are any navbar burgers
if ($navbarBurgers.length > 0) {
// Add a click event on each of them
$navbarBurgers.forEach(function ($el) {
$el.addEventListener('click', function () {
// Get the target from the "data-target" attribute
var target = $el.dataset.target;
var $target = document.getElementById(target);
// Toggle the class on both the "navbar-burger" and the "navbar-menu"
$el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
}
});
</script>
</body>
</html>