-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
180 lines (169 loc) · 5.89 KB
/
index.html
File metadata and controls
180 lines (169 loc) · 5.89 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>OpenSourcely</title>
<link rel="icon" href="assets/favicon.ico" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.0/css/bulma.min.css"
/>
</head>
<body>
<nav class="navbar is-transparent is-fixed-top">
<div class="navbar-brand">
<a class="navbar-item" href="#">
<img
src="assets/images/opensourcely-small.png"
alt="Bulma: a modern CSS framework based on Flexbox"
width="32"
height="28"
/>
<p class="title is-4 ml-4">OpenSourcely</p>
</a>
<a
role="button"
class="navbar-burger burger"
aria-label="menu"
aria-expanded="false"
data-target="navbarBasicExample"
>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-item">
<a href="#projects" class="navbar-item"> Projects </a>
<a href="#ping" class="navbar-item"> Contact </a>
</div>
</div>
</div>
</nav>
<section class="hero has-background-info-light is-fullheight-with-navbar">
<div class="hero-body">
<div class="container">
<div class="columns">
<div class="column is-three-quarters">
<p class="title">OpenSourcely</p>
<p class="subtitle is-4">Explore. Learn. Contribute.</p>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="projects">
<div class="container">
<h1 class="title">Projects</h1>
<div class="columns">
<div class="column is-half">
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img
src="assets/images/nucleus.png"
height="96"
width="96"
alt="Placeholder image"
/>
</figure>
</div>
<div class="media-content">
<p class="title is-4 has-text-info mt-2">
<a href="https://nucleus.amcspsgtech.in"> Nucleus </a>
</p>
</div>
<div class="media-right mt-2">
<a
href="https://github.com/opensourcely/Nucleus-Frontend"
class="title"
>
<i class="fa fa-github" style="font-size: 32px"></i>
</a>
</div>
</div>
<div class="content">
Nucleus is a platform that seeks to digitalize all aspects of
education delivery by facilitating online learning,including
classes, assignments and so on.
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="ping">
<div class="container">
<h1 class="title">Ping us</h1>
<div class="columns">
<div class="column is-half">
<!-- <div class="card"> -->
<div class="card-content">
<div class="content">
<p>
Have something to say? <br />
Just want to say hi?
</p>
<p>
Write to us at
<a href="mailto:opensourcely.io@gmail.com"
>opensourcely.io@gmail.com</a
>
</p>
<p class="subtitle">Interested in working with us?</p>
<p>
Head over to
<a href="https://github.com/opensourcely/git-sandbox"
>git-sandbox</a
>
and open a pull request :-)
<br />
You can find the details
<a
href="https://github.com/opensourcely/git-sandbox/blob/master/README.md"
>
in the README.</a
>
</p>
</div>
</div>
</div>
</div>
<!-- </div> -->
</div>
</section>
<script>
document.addEventListener("DOMContentLoaded", () => {
// Get all "navbar-burger" elements
const $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((el) => {
el.addEventListener("click", () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle("is-active");
$target.classList.toggle("is-active");
});
});
}
});
</script>
</body>
</html>