-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget-started.php
106 lines (86 loc) · 2.86 KB
/
get-started.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
<?php
include ("./includes/head.html");
?>
<body>
<?php
include ("./includes/mainnav.html");
?>
<div class="container col-lg-12 container-margin" id="started">
<div class="col-lg-12">
<div class="col-lg-12">
<h3 class="text-center eventTitle">Get Started</h3>
</div>
<div class="col-lg-3">
<h4>Take a Self-Guided Tour</h4>
<p class="force">Find out what's available at the Richardson Library:</p>
<img src="images/tourJTR.png">
</div>
<div class="col-lg-3">
<h4>Connect to the Internet</h4>
<p class="force">Get access to library resources using the Eduroam service:</p>
<img src="images/wifi.png">
</div>
<div class="col-lg-3">
<h4 class="">Print</h4>
<p class="force">Print from one of our computers, or from your own:</p>
<img src="images/print.png">
</div>
<div class="col-lg-3">
<h4 class="">Need Help?</h4>
<p>Visit a <span class="highlight">Genius Squad</span> location. They can assist with things like:</p>
<ul>
<li>Wireless setup</li>
<li>Virus and malware removal</li>
<li>Hardware repair</li>
<li>RAM upgrades</li>
<li>Phone configuration for access to e-mail</li>
<li>and more!</li>
</ul>
<p>The closest one is in <span class="highlight">room 205 </span> in the Schmitt Academic Center.</p>
<!-- <p class="update">Last updated: May 4, 10am</p> -->
</div>
</div>
</div>
<!-- JavaScript plugins (requires jQuery) -->
<script src="js/bootstrap.min.js"></script>
<script type="text/jscript">
$(document).ready(function() {
$('#lw a').click(function(e) {
e.preventDefault();
});
})
</script>
<script>
$(document).ready(function(){
$(".hours-col-loc a").each(function(){
$( this ).replaceWith( "<p>" + $( this ).text() + "</p>" );
});
});
</script>
<script>
$().ready(function() {
var $scrollingDiv = $("#navDiv");
$(window).scroll(function(){
$scrollingDiv
.stop()
.animate({"marginTop": ($(window).scrollTop() + 30) + "px"}, "slow" );
});
});
</script>
<script>
setTimeout(function(){var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0011/1884.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b)}, 1);
</script>
<script>
$(document).ready(function(){
$("#navBar a").each(function(){
$( this ).removeClass("activated");
$( this ).addClass("nonactive");
});
$("#navBar .start").removeClass("nonactive").addClass("activated");
});
</script>
</body>
</html>