-
Notifications
You must be signed in to change notification settings - Fork 0
/
legal.html
108 lines (87 loc) · 4.65 KB
/
legal.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
<!--
==============================
Adam Coard's "UVic Timetables"
==============================
1. I use Bootstrap to provide the core responsivity of the site.
2. Also, since I use jQuery 2.x, there may not be support for IE8.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../assets/ico/favicon.png">
<title>Tables for Uvic</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="style.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="http://fonts.googleapis.com/css?family=Cookie&subset=latin" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Open Sans&subset=latin" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Life Savers&subset=latin" rel="stylesheet" type="text/css">
<script src="bootstrap.js"></script>
<script src="code.js"></script> <!-- This is where my custom JavaScript is. -->
<script src="smooth-scroll.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../../assets/js/html5shiv.js"></script>
<script src="../../assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">T</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a id="save" class="button">Save</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Help<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">About</a></li>
<li><a href="faq.html">Help</a></li>
<li><a href="legal.html">Legal</a></li>
<li class="divider"></li>
<li class="dropdown-header">Follow me!</li>
<li><a href="http://www.acoard.com">acoard.com</a></li>
<li><a href="https://twitter.com/AdamCoard">Twitter</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="container">
<div class="jumbotron">
<h1>Legal</h1>
<p class="lead">This website is in no way shape or form officially affiliated with the University of Victoria (UVic). The views expressed on this website do not necessarily reflect the views of UVic. All registered trademarks are the property of their respective owners.</p>
<p>The website itself and the code comprising it is licensed under the MIT license, but not any of the images. That means you're free to do whatever you want with the code. If you do anything with it, I'd appreciate you letting me know!<p>
<br>
<p> Copyright (c) 2013 Adam Coard</p>
<p>Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:</p>
<p>The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.</p>
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.</p>
</div>
<div class="footer">
<p><a href="http://www.acoard.com">© Adam Coard</a></p>
</div>
</div> <!-- /container -->
</body>
</html>