forked from COSI-Lab/MirrorWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.html
137 lines (132 loc) · 4.34 KB
/
history.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Clarkson University Mirror - History</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="js/vendors/jquery-2.1.4.min.js"></script>
<script src="js/main.js"></script>
<meta name="theme-color" content="#035245">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="description" content="The website for Clarkson University's Software Mirror">
<script src="js/cosi-nav.js" defer></script>
<style>
:root {
--background-color: rgba(255, 255, 255, 0.2);
--text-color: white;
}
</style>
<script>
window.onload = function () {
var foo = document.getElementById('navhistory');
foo.setAttribute("class", "current");
};
</script>
</head>
<body>
<cosi-nav></cosi-nav>
<header>
<div class="container top-header">
<a href="http://clarkson.edu/">
<img src="img/clarksonlogo.jpg">
</a>
<h1 class="left">
<a href="index.html">Mirror</a>
</h1>
<i id="menu-button" class="fa fa-bars"></i>
</div>
<nav id="navdesktop">
<div class="container">
<ul>
<li id="navhome">
<a href="index.html">Mirror Home</a>
</li>
<li id="navdistributions">
<a href="distributions.html">Distributions</a>
</li>
<li id="navsoft">
<a href="software.html">Software</a>
</li>
<li id="navstats">
<a href="stats.html">Statistics</a>
</li>
<li id="navhistory">
<a href="history.html">History & Sponsors</a>
</li>
</ul>
</div>
</nav>
</header>
<nav id="navmobile">
<div class="container">
<ul>
<li id="navhome">
<a href="index.html">Mirror Home</a>
</li>
<li id="navdistributions">
<a href="distributions.html">Distributions</a>
</li>
<li id="navsoft">
<a href="software.html">Software</a>
</li>
<li id="navstats">
<a href="stats.html">Statistics</a>
</li>
<li id="navhistory">
<a href="history.html">History & Sponsors</a>
</li>
</ul>
</div>
</nav>
<div class="content">
<div class="container">
<h1>History</h1>
<p>
According to archived COSI webpages, Mirror has existed as early as October 2002. The current server is the third iteration
that has run the mirror service. A longer article on the history of Mirror can currently be found on
<a href="https://cosi-lab.github.io/meeting-minutes/news/2016/08/08/Weekly-Newsletter.html">Meeting Minutes</a> and will eventually be put on the upcoming COSI History website.
</p>
</div>
<div class="container">
<h1>Sponsors</h1>
<p>We would like to thank everyone that helped out contributing to help make the newest iteration of the mirror possible, including:</p>
<ul class="center" style="list-style-type: none;">
<li>Eric Busse</li>
<li>Ted Champagne</li>
<li>Steve Evanchik</li>
<li>Wenjin Hu</li>
<li>Mark Platek</li>
</ul>
<p>and these corporate sponsors:</p>
<div class="row">
<div class="col col--2-of-4">
<a href="http://www.vmware.com/">
<img class="logo" src="img/vmware.jpg">
</a>
</div>
<div class="col col--2-of-4">
<a href="https://www.siegetechnologies.com/">
<img class="logo" src="img/siege.jpg">
</a>
</div>
</div>
</div>
<div class="container subfooter center">
<p>The logos are copyrighted by VMware and Siege Technologies respectively and fair use is given.</p>
</div>
</div>
<footer>
<div class="container">
<div class="row">
<div class="col col--4-of-4">
<h4>
<a href="http://cosi.clarkson.edu">Clarkson Open Source Institute</a> | Design by Benjamin Lannon | Mirror Contact: [email protected] [email protected] [email protected] |
<a href="https://github.com/COSI-Lab/MirrorWebsite">GitHub Repository</a>
</h4>
</div>
</div>
</div>
</footer>
</body>
</html>