-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
143 lines (116 loc) · 5.25 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
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
138
139
140
141
142
143
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hydroinformatics Group - Home</title>
<meta name="description" content="The Hydroinformatics Group at the University of Virginia.">
<link rel="stylesheet" href="/css/main.css">
<link rel="canonical" href="/">
<link rel="shortcut icon" type ="image/png" href="/images/favicon.png">
</head>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=GA_TRACKING_ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-111508829-1');
</script>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">UVA Hydroinformatics</a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="/">Home</a></li>
<li><a href="/team">Team</a></li>
<li><a href="/research">Research</a></li>
<li><a href="/publications">Publications</a></li>
<li><a href="/projects">Projects</a></li>
<li><a href="/allnews">News</a></li>
<li><a href="/openings">Openings</a></li>
</ul>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div id="homeid" class="col-sm-8">
<p align="left" padding-bottom="10px">
We are a <a href="/team">team of researchers</a> at the <a href="https://www.virginia.edu/">University of Virginia</a> exploring new ways to bring advancements in computing and data science to society’s most challenging water resources management problems.
</p>
<div id="carousel" class="carousel slide" data-ride="carousel" data-interval="5000" data-pause="hover">
<!-- Menu -->
<ol class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class="active"></li>
<li data-target="#carousel" data-slide-to="1"></li>
<li data-target="#carousel" data-slide-to="2"></li>
<li data-target="#carousel" data-slide-to="3"></li>
<li data-target="#carousel" data-slide-to="4"></li>
<li data-target="#carousel" data-slide-to="5"></li>
<li data-target="#carousel" data-slide-to="6"></li>
</ol>
<!-- Items -->
<div class="carousel-inner">
<div class="item active">
<img src="/images/slider/lawn2.jpg" alt="Slide 1" />
</div>
<div class="item">
<img src="/images/slider/Team_pic_kanuk.jpg" alt="Slide 2" />
</div>
<div class="item">
<img src="/images/slider/posters2.jpg" alt="Slide 3" />
</div>
<div class="item">
<img src="/images/slider/hiking.jpg" alt="Slide 4" />
</div>
<div class="item">
<img src="/images/slider/AGU_2018.jpg" alt="Slide 5" />
</div>
<div class="item">
<img src="/images/slider/group_lunch_2024.jpg" alt="Slide 6" />
</div>
</div>
<a class="left carousel-control" href="#carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<p align="left">
We are members of the interdisciplinary <a href="http://linklab.virginia.edu/">Link Lab</a>, a 17,000 square foot laboratory in the <a href="https://engineering.virginia.edu/">Engineering School</a> at the University of Virginia that brings together faculty and students with a shared interest in cyber-physical systems. If you are interested in joining our team, please check out our <a href="/openings">openings</a>.
</p>
<p align="left">
In addition to the <a href="/publications">publications</a>, general <a href="/research">research interests</a>, and <a href="/projects">example projects</a> on this site, we also maintain a <a href="https://github.com/uva-hydroinformatics" target="_blank">Github organization<a></a> where much of the the code resulting from our research is released free and open source.
</a></p>
</div>
</div>
</div>
<div id="footer" class="panel">
<div class="panel-footer">
<div class="container-fluid">
<div class="row">
<div class="col">
<p><small>© 2024 Jonathan L. Goodall. Created using <a href="https://jekyllrb.com">Jekyll</a> and the <a href="http://www.allanlab.org/aboutwebsite.html">Allen Lab template</a>.</small></p>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</body>
</html>