-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
128 lines (118 loc) · 4.82 KB
/
template.html
File metadata and controls
128 lines (118 loc) · 4.82 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
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
<!--Start of code -->
<!--
OU SRT Website
Nickalas Reynolds
nickreynolds@ou.edu
Made March 2017
-->
<!DOCTYPE html>
<html lang="en">
<!--####################-->
<!-- Header information -->
<!--####################-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Small Radio Telescope">
<meta name="author" content="Nickalas Reynolds">
<meta HTTP-EQUIV="refresh" CONTENT="600">
<title>Nielsen Small Radio Telescope</title>
<!--####################-->
<!-- Bootstrap Core CSS -->
<!--####################-->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<!--##############-->
<!-- Custom Fonts -->
<!--##############-->
<link href="./css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="./css/w3.css">
<!--###########-->
<!-- Theme CSS -->
<!--###########-->
<link rel="stylesheet" href="./css/grayscale.min.css">
<link rel="stylesheet" href="./stylesheets/index.css">
<!--#############-->
<!-- Javascripts -->
<!--#############-->
<style>
/* For width 400px and larger: */
@media all and (min-width: 400px) {.lart {text-align:left;-webkit-flex: 1 auto;flex:1 auto;-webkit-order:1;order:1;}.lart .rart {text-align:left;-webkit-flex: 1 auto;flex:1 auto;-webkit-order:1;order:1;}.rart{-webkit-flex:5 0px;flex:5 0px;-webkit-order:2;order:2;}}
</style>
<script src="js/moment.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.simpleWeather.min.js"></script>
<script src="js/weather.js"></script>
<script src="js/collapse_toolbar.js"></script>
<script src="js/index.js"></script>
<!--##########################-->
<!-- E-obsfucation Javascript -->
<!--##########################-->
<script src="./js/touch.js"></script>
</head>
<style type="text/css">
html,body {
background: url('./img/coming_soon.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
width:100%;
height:100%;
}
</style>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!--############-->
<!-- Navigation -->
<!--############-->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
<i class="fa fa-play-circle"></i> <span class="light">OU SRT Home</span>
</a>
</div>
<!--####################-->
<!-- Bottom contact bar -->
<!--####################-->
<div class="about clearfix navbar-fixed-bottom">
<p class="pull-left">OU SRT</p>
<div class="social pull-right">
<a><script>touch3("nickreynolds",".ou",5,"")</script></a>
<a href="https://github.com/OUsrt/srtn" target="blank"> <i class="fa fa-github"></i></a>
<a href="https://github.com/OUsrt/srtn/archive/master.zip" target="blank"><i class="fa fa-download"></i></a>
</div>
</div>
<!--#################-->
<!-- Navbar toggling -->
<!--#################-->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section , UPDATE DOWNLOADS>HTML WHEN CHANGES ARE MADE-->
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#weather">Weather</a>
</li>
<li>
<a class="page-scroll" href="#highlights">Highlights</a>
</li>
<li>
<a class="page-scroll" href="#projects">Projects</a>
</li>
<li>
<a class="page-scroll" href="#contact">Contact</a>
</li>
<li>
<a class="page-scroll" href="./downloads.html" target="blank">Downloads</a>
</li>
</ul>
</div> <!-- /.navbar-collapse -->
</div> <!-- /.container -->
</nav>
</body>
</html>