-
Notifications
You must be signed in to change notification settings - Fork 2
/
indecbak.html
133 lines (110 loc) · 5.67 KB
/
indecbak.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
<!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>ResearchSpace</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="styles/basic.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- Leave those next 4 lines if you care about users using IE8 -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script>
$(function(){
$("#includedHeader").load("header.html");
});
</script>
<script>
$(function(){
$(".includedFooter").load("footer.html");
});
</script>
<script>
function myFunction(e) {
if (e.id == 'menudemo') {
window.open("http://demo.researchspace.org", "", "width=1200,height=800,top=100,left=100");
}
if (e.id == 'git') {
window.open("https://github.com/researchspace/researchspace","", "width=1200,height=800,top=100,left=100")
}
}
</script>
</head>
<body>
<div class="container">
<div id="includedHeader"></div>
<div><p>ResearchSpace is a collaborative open source Semantic Web environment designed to use and help build knowledge about the world and its history. It is not technology led and its design assumes a new way of thinking about
history and cultural heritage which resolves issues and conflicts that exist between qualitative and quantitative research. The mindset that sits behind ResearchSpace is embbeded in the design
but its potential relies on the approach of human researchers and the application of human knowledge systems. </p><p align="center">ResearchSpace is funded by the Andrew W. Mellon Foundation</p></div>
<div class="row marketing">
<p><img src="images/createenrichdiscover.png" align="center" height="350px"></p>
</div>
<div class="col-centered">
<div class="about-panel col-lg-12">
<p>ResearchSpace connects information about people, places, periods, things and concepts from different sources without losing their original context, and allows the community to enrich information as a collaborative activity. It structures information as networks of knowledge supporting both a linear and non-linear approach to historical questions and encouraging different perspectives.
ResearchSpace is open source, open standards, customisable and extensible, designed to be used with a wide range of knowledge based projects and applications.</p>
<p>to understand the design objectives of ResearchSpace, see <a href="about.html">About</a></p>
</div>
<div id="demo" class="carousel slide" data-ride="carousel" data-interval="7000">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
<li data-target="#demo" data-slide-to="3"></li>
<li data-target="#demo" data-slide-to="4"></li>
<li data-target="#demo" data-slide-to="5"></li>
<li data-target="#demo" data-slide-to="6"></li>
<li data-target="#demo" data-slide-to="7"></li>
<li data-target="#demo" data-slide-to="8"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img id="slide1" src="images/slide1_graph.png" alt="Search" width="700" >
</div>
<div class="carousel-item">
<img id="slide2" src="images/slide2_graph.png" alt="Graph Authoring" width="700" >
</div>
<div class="carousel-item">
<img id="slide3" src="images/slide3_graph.png" alt="Semantic Narrative" width="700" >
</div>
<div class="carousel-item">
<img id="slide4" src="images/slide4_graph.png" alt="Clipboard" width="700" >
</div>
<div class="carousel-item">
<img id="slide5" src="images/slide5_graph.png" alt="Argument" width="700" >
</div>
<div class="carousel-item">
<img id="slide6" src="images/slide6_graph.png" alt="Templates" width="700" >
</div>
<div class="carousel-item">
<img id="slide7" src="images/slide7_graph.png" alt="Patterns" width="700" >
</div>
<div class="carousel-item">
<img id="slide8" src="images/slide8_graph.png" alt="Patterns" width="700" >
</div>
<div class="carousel-item">
<img id="slide9" src="images/slide9_graph.png" alt="Patterns" width="700" >
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<img id="arrowleft" src="images/leftarrow.png" />
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<img id="arrowright" src="images/rightarrow.png" />
</a>
</div>
</div>
<div class="push"></div><div class="includedFooter"></div> </div> <!-- /container -->
</body>
</html>