-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (66 loc) · 2.76 KB
/
index.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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="Andrew Muhs">
<title>Sunflower SOP</title>
<!-- CSS Links -->
<link rel="stylesheet" type="text/css" href="static/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="static/css/main.css">
<!-- Browser Tab Icon Link -->
<link rel="icon" href="static/images/icon.png">
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- Header / Navigation -->
<!-- https://getbootstrap.com/examples/navbar-fixed-top/ -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a id = "home-btn" class="navbar-brand" href="index.html">Sunflower SOP</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="bagging.html">Bagging</a></li>
<li><a href="measuring.html">Measuring</a></li>
<li><a href="threshing.html">Threshing</a></li>
<li><a href="seasons.html">Past Seasons</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="disabled"><a href="#">Dr. Barb</a></li>
<li><a href="http://www.ars.usda.gov/pandp/people/people.htm?personid=37853">Dr. Marek</a></li>
</ul>
</div>
</div>
</nav>
<!-- Fixed Background Image -->
<div class = "jumbotron">
<div id = "bg-img" class = "jumbotron"><!-- background-image --></div>
</div>
<!-- Content Begins Here -->
<div class = "content">
<h1> </h1>
<div class = "content-container">
<p id = "authored"><a href="https://amuhs.github.io">Andrew Muhs</a>
<br> NCRPIS - ARS, Ames, IA
<br> Written: 10 August 2015
<br> Updated: 6 January 2016
<br><a href = "static/pdfs/Sunflower-SOP.pdf">pdf version</a></p>
</div>
</div>
<script src="static/js/jquery-2.2.0.min.js"></script>
<script src="static/js/bootstrap.min.js"></script>
</body>
</html>