-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·117 lines (100 loc) · 4.22 KB
/
index.php
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
<!DOCTYPE HTML>
<html>
<head>
<title>Omega</title>
<!--Set document charset-->
<meta charset="utf-8" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<!--Import local assets-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--Set the shortcut icon-->
<link rel="shortcut icon" type="image/ico" href="images/icons/favicon.ico">
<!--Progressive Web App meta tags-->
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#EE6E73">
<meta name="Description" content="Omega is a collaborative classroom platform for teachers and students alike.">
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Header -->
<section id="header">
<header>
<h1>Omega</h1>
<p>Classrooms</p>
</header>
<footer>
<a href="#banner" class="button style2 scrolly-middle">Proceed as anticipated</a>
</footer>
</section>
<!-- Banner -->
<section id="banner">
<header>
<h2>This is Omega</h2>
</header>
<p>A brand new collaboration tool for students and teachers.<br />
It’s responsive, built on HTML5/CSS3, and entirely free<br />
under the <a href="https://omegaclassrooms.ga/LICENSE.md">MIT License</a>.</p>
<footer>
<a href="signin/" class="button style2 scrolly">Let me in!</a>
</footer>
</section>
<!-- Feature 1 -->
<article id="first" class="container box style1 right">
<a href="#" class="image fit"><img src="https://media.istockphoto.com/vectors/group-of-students-vector-id910098436?k=6&m=910098436&s=612x612&w=0&h=ts1tIGl2J40iXoVrDAJHIIo1ah7uS9BotKx7qMQxeWg=" alt="" /></a>
<div class="inner">
<header>
<h2>Students</h2>
</header>
<p>Omega Classrooms enables students to take their entire classroom experience online. From assignments to notes. Everything is here.</p>
</div>
</article>
<!-- Feature 2 -->
<article class="container box style1 left">
<a href="#" class="image fit"><img src="https://opportunityculture.org/wp-content/uploads/2017/07/rows-teachers-no-stars.jpg" alt="" /></a>
<div class="inner">
<header>
<h2>Teachers</h2>
</header>
<p>A fool-proof platform to manage assignment submissions, distribute course material and clarify doubts on the go.</p>
</div>
</article>
<!-- Portfolio -->
<article class="container box style2">
<header>
<h2>Open Source</h2>
<p>Omega is an open source software protected by the <a href="https://omegaclassrooms.ga/LICENSE.md">MIT License</a>. Feel free to fork the repository on <a href="https://github.com/siddhantvinchurkar/omega/" target="_blank">GitHub</a>!</p>
</header>
</article>
<section id="footer">
<ul class="icons">
<li><a href="https://github.com/siddhantvinchurkar/omega/" target="_blank" class="icon fa-github"><span class="label">GitHub</span></a></li>
</ul>
<div class="copyright">
<ul class="menu">
<li>© <p id="year" style="display:inline;"></p> <a href="https://volatile.ga/">Volatile, Inc.</a> All rights reserved.</li><li>Designed by <a href="https://siddhantvinchurkar.me/">Siddhant Vinchurkar.</a></a></li>
</ul>
</div>
</section>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.poptrox.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script type="text/javascript">
window.onload = function(){
// Register a Service Worker
if('serviceWorker' in navigator) {
navigator.serviceWorker
.register('sw.js')
.then(function() { console.log("%c Service Worker Registered", "background:#222222; color:#BADA55;"); });
}
// Set current year
document.getElementById("year").innerHTML = new Date().getFullYear();
}
</script>
</body>
</html>