-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
executable file
·120 lines (101 loc) · 6.17 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
<!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="category" content="LIT">
<title>Language Information and Technologies</title>
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/carousel.css" rel="stylesheet">
<link href="css/navbar.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
</head>
<body>
<!--Google Analytics "LIT Website" Tracker-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-98452906-1', 'auto');
ga('send', 'pageview');
</script>
<div id="main_container" class="container">
<!-- Static navbar -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<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 class="navbar-brand" href="index.html"><b>Language and Information Technologies</b></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="people.html">People</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="posters.html">Poster Gallery</a></li>
<li><a href="downloads.html">Downloads / Demos</a></li>
<li><a href="news.html">Events</a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</nav>
<h2 class="featurette-heading">Language and Information Technologies (LIT)</h2>
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<!-- will be filled dynamically -->
</ol>
<div class="carousel-inner" role="listbox">
<!-- will be filled dynamically -->
</div>
<a id='carousel_left' class="left carousel-control" href="#myCarousel" 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="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div><!-- /.carousel -->
<div id="index_content">
<div id="about_lit" class="row featurette">
<p class="lead">LIT (Language and Information Technologies) is a research group at the University of Michigan, working on research projects in natural language processing, information retrieval, and applied machine learning. The Language and Information Technologies research group was established in 2002 at the University of North Texas, with the aim of promoting research and education in natural language processing, information retrieval, and applied machine learning. The group moved to the University of Michigan in 2013.</p>
<p class="lead">Faculty and students work on several aspects of the science and technology of language processing, including projects in areas such as lexical semantics, sentiment and subjectivity analysis, graph-based natural language processing, multilingual text processing, and others.</p>
<p class="lead">The group has received research funding from the National Science Foundation, Google, the State of Texas, and the National Endowment for Humanities.</p>
<p class="lead"><b>Physical Location:</b></br>
Computer Science and Engineering</br>
Bob and Betty Beyster Building</br>
2260 Hayward Street</br>
Ann Arbor, MI 48109-2121</br></p>
</div>
<div id="recent_news" class="row featurette">
<h2 id="recent_news_heading" class="featurette-heading">Recent News</h2>
</div>
</div>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="dist/js/bootstrap.min.js"></script>
<script src="js/parseCsv.js"></script>
<script src="js/index.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>