-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (58 loc) · 2.39 KB
/
Copy pathindex.html
File metadata and controls
69 lines (58 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Open Source @ MSU</title>
<link rel="stylesheet" href="css/site.css">
</head>
<body>
<div class="wrap">
<section class="hero">
<img src="img/bobcat.png" alt="MSU Bobcat logo">
<div class="hero-text">
<h1>Open Source <span class="at">@</span> MSU</h1>
<p>The <em>Open Source Group</em> at <a href="https://www.cs.montana.edu">The Gianforte School of Computing</a>, <a href="https://montana.edu">Montana
State University</a></p>
</div>
</section>
<h2>Projects</h2>
<div class="grid">
<a class="card" href="https://mtmc.cs.montana.edu">
<div class="icon"><img src="img/mtmc.png" alt=""></div>
<div class="name">MTMC-16</div>
<div class="url">mtmc.cs.montana.edu</div>
<p class="desc">A 16-bit educational computer with emulator, assembler, and tooling for learning how computation works.</p>
</a>
<a class="card" href="https://bdp.cs.montana.edu">
<div class="icon"><img src="img/bdp.png" alt=""></div>
<div class="name">BDP-1</div>
<div class="url">bdp.cs.montana.edu</div>
<p class="desc">An 8-bit learning computer inspired by the Little Man Computer, baby brother of the MTMC-16.</p>
</a>
<a class="card" href="https://notch.cs.montana.edu">
<div class="icon"><img src="img/notch.png" alt=""></div>
<div class="name">Notch</div>
<div class="url">notch.cs.montana.edu</div>
<p class="desc">A scripting language/pseudo-code for the JVM & Minecraft</p>
</a>
<a class="card" href="https://pika.cs.montana.edu">
<div class="svg-container icon"></div>
<div class="name">PikaORM</div>
<div class="url">pika.cs.montana.edu</div>
<p class="desc">A small Java ORM with no code generation, no config files, and no SQL hiding. Works with plain POJOs.</p>
</a>
<a class="card" href="https://classic.cs.montana.edu">
<div class="icon glyph">.css</div>
<div class="name">classic.css</div>
<div class="url">classic.cs.montana.edu</div>
<p class="desc">A CSS library that styles semantic HTML with a neo-classical digital look and feel.</p>
</a>
</div>
<section class="content">
<h1>Contact</h1>
<h2><a href="mailto:opensource.montana.edu">Email Us</a></h2>
</section>
</div>
</body>
</html>