-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (95 loc) · 4.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>umd.io</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css">
<link rel="stylesheet" href="style.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
if ($navbarBurgers.length > 0) {
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
const target = el.dataset.target;
const $target = document.getElementById(target);
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
}
});
</script>
</head>
<body class="has-navbar-fixed-top">
<nav class="navbar is-fixed-top is-danger" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://umd.io">umd.io</a>
<a role="button" class="navbar-burger" data-target="nav-links" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu navbar-end" id="nav-links">
<a class="navbar-item" href="https://umd.io"> Home </a>
<a class="navbar-item" href="https://beta.umd.io"> Docs </a>
<a class="navbar-item" href="https://github.com/umdio/umdio"> Github </a>
</div>
</nav>
<section class="hero is-medium">
<div class='hero-body container'>
<div class="columns">
<div class='column is-two-thirds'>
<p class="title">
umd.io - By students, for students
</p>
<p class='subtitle'>
umd.io is a student-run open source API for University of Maryland data.<br/><br/>
If you are building a University data-focused app, hack, or project, you’re in the right place. We want to make the data part easy so that developers can focus on making awesome things.<br/><br/>
Students want to improve their experience, and the experience of their fellow students. They aren’t satisfied using 90’s era web apps like Venus for building their schedule when they could build better ones themselves.
</p>
</div>
<div class='column is-one-third'>
<img src='./img/pair-prog.svg' class='splash-img' width=400px height=400px />
</div>
</div>
</div>
</section>
<section class="section" id="cards">
<div class='container'>
<div class="tile is-ancestor">
<div class="tile is-parent">
<article class="tile is-child box">
<span class='icon'><i class="fas fa-code"></i></span>
<p class="title">API</p>
<p>The API is our main offering. We have course data, live and static bus data, buildings, professors, and majors.<br/><br/><br/>
<a href="https://beta.umd.io">Learn more</a> </p>
</article>
</div>
<div class="tile is-parent">
<article class="tile is-child box">
<span class='icon'><i class="fas fa-file-download"></i></span>
<p class="title">Data Dumps</p>
<div class="content">For high-usage purposes or offline applications, we offer JSON dumps of all our non-live data. <br/><br/><br/>
<a href="./data.html">Learn more</a> </p>
</div>
</article>
</div>
<div class="tile is-parent">
<article class="tile is-child box">
<span class='icon'><i class="fab fa-github"></i></span>
<p class="title">Get involved</p>
<div class="content">
We love contributions! There's a lot to do - everything from improving the docs, to upgrading our tech, to adding new data sources.<br/><br/>
<a href='https://github.com/umdio/umdio'>Learn more</a>
</div>
</article>
</div>
</div>
</div>
</section>
</body>
</html>