-
Notifications
You must be signed in to change notification settings - Fork 2
/
CommunityContribution.html
80 lines (62 loc) · 2.5 KB
/
CommunityContribution.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
<!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" />
<link rel="icon"
type="image/png"
href="rslogo_blackonwhite_crop_9gX_icon.ico">
<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(){
$("#rightframe").load("rightframe.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 id="containerid" class="container">
<div id="contentcontainer">
<div class="includedHeader"></div>
<div class="row">
<div id="indexbody" class="col-sm-9"> <iframe src="https://docs.google.com/forms/d/e/1FAIpQLSem4-X8QjMFjhEYtZUVgzIlqpZi5sXAOegwdCRnM3sxT-agWw/viewform?embedded=true" width="640" height="1103" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe></div>
<div id="rightframe" class="col-sm-3"></div>
</div>
</div>
<div class="includedFooter"></div>
</div>
<!- - /container -->
</body>
</html>