-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (106 loc) · 5.15 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
<!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">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" type="image/x-icon" href="/assets/ico/favicon.ico">
<link href="../assets/css/bootstrap.min.css" rel="stylesheet">
<title>Some VIVO Things</title>
<style>
/* Move down content because we have a fixed navbar that is 50px tall */
body {
padding-top: 50px;
padding-bottom: 20px;
}
</style>
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<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 active" href="/">Some VIVO Things</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/data">Data In</a></li>
<li><a href="/info">Info Out</a></li>
<li><a href="/blog">The Blog</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">More <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://www.amazon.com/VIVO-Scholarly-Networking-Discovery-Synthesis/dp/1608459934/ref=sr_1_1?ie=UTF8&qid=1391973550&sr=8-1&keywords=vivo+conlon">The VIVO Book</a></li>
<li><a href="http://www.amazon.com/Semantic-Working-Ontologist-Second-Edition/dp/0123859654/ref=sr_1_1?ie=UTF8&qid=1391973643&sr=8-1&keywords=semantic+web+for+the+working+ontologist">The Semantic Web for the Working Ontologist</a></li>
<li class="divider"></li>
<li class="dropdown-header">Some VIVO sites</li>
<li><a href="http://vivo.ufl.edu">University of Florida VIVO</a></li>
<li><a href="http://research-hub.griffith.edu.au/">Griffith University Research Hub</a></li>
<li class="divider"></li>
<li class="dropdown-header">Related CTSA projects</li>
<li><a href="http://research.icts.uiowa.edu/polyglot/">CTSAsearch</a></li>
<li><a href="http://ctsaconnect.org/">CTSAconnect</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1>Some VIVO Things</h1>
<p>A site for things about VIVO -- tools, data, visualizations, and hopefully, a blog. There's a
bunch of things being created to manage VIVO data -- load, clean, discover. And a bunch to visualize
organizations, publications, expertise, and more.</p>
<p><a href="/blog" class="btn btn-primary btn-lg" role="button">Learn more »</a></p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2>Data In</h2>
<p>We're creating a variety of easy to use tools to load data
into VIVO, improve self-edit of data, and inspect data in VIVO. The VIVO Triple Inspector
shows <em>exactly</em> what VIVO stores for each entity.</p>
<p><a class="btn btn-default" href="/data" role="button">Create data »</a></p>
</div>
<div class="col-md-4">
<h2>Information Out</h2>
<p>Visualizations, reports, explorers, expertise finders, biosketches.
Development is under way to create accessible tools for use by those
interested in understanding more about scholarly activity.</p>
<p><a class="btn btn-default" href="/info" role="button">Display information »</a></p>
</div>
<div class="col-md-4">
<h2>A VIVO Blog</h2>
<p>From upgrades to 1.6, activity and applications around the world,
to the conference, implementation fest, sponsor activities, workgroups
and more, we'll post some ideas and updates on the blog.</p>
<p><a href="/blog" class="btn btn-default" href="#" role="button">To the blog »</a></p>
</div>
</div>
<hr>
<footer>
<p>© <a href="http://vivo.ufl.edu/individual/mconlon">Mike Conlon</a>,
<a href="http://www.ufl.edu">University of Florida</a> 2014</br>
Need something else? We'll have some additional links here</br>
<a href="http://vivoweb.org">The VIVO Project Web Site</p>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="../assets/js/bootstrap.min.js"></script>
</body>
</html>