-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
110 lines (96 loc) · 3.61 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
<!DOCTYPE html>
<html>
<head>
<title>OpenScience</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="description" content="Open Science for SE">
<meta name="author" content="Tim Menzies, Emerson Murphy-Hill">
<link rel="icon" href="/img/favicon.ico" type="image/png">
<link href="/css/style.min.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media
queries -->
<!-- WARNING: Respond.js doesn't work if you view the page
via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/
html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/
respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2"></div>
<div class="col-xs-8 col-sm-8 col-md-8 col-lg-8 text-center">
<h1>Welcome to the Software Engineering Open Science Portal</h1>
</div>
</div>
<div class="row">
<div class="col-xs-2 col-sm-2 col-md-3 col-lg-3"></div>
<div class="col-xs-8 col-sm-8 col-md-6 col-lg-6 text-center">
<p class="lead">Because ... (r)esearch has deserted the individual and entered the group. The individual worker find the problem too large, not too difficult. (They) must learn to work with others. - Theobald Smith (1859-1934).</p>
</div>
</div>
<hr> <!-------------------------------------------->
<div class="row">
<div class="centered">
<!-- REPO -->
<div class="col-sm-4 col-md-4 col-lg-4">
<a class="thumbnail blue-text" href="repo/index.html">
<br>
<img src="img/repologo.png" alt="tera-PROMISE repository">
<div class="caption">
<h4 class="text-center">The tera-PROMISE repository</h4>
<br>
<p class="text-center">Bits and pieces from SE research.</p>
</div>
</a>
</div>
<!-- SSJ -->
<div class="col-sm-4 col-md-4 col-lg-4">
<a class="thumbnail blue-text" href="ssj/index.html">
<br>
<img src="img/ssj-logo.jpg" alt="Software Science Journal">
<div class="caption">
<h4 class="text-center">The Software Science Journal</h4>
<br>
<p class="text-center">Judging which bits are useful.</p>
</div>
</a>
</div>
<!-- BOOK -->
<div class="col-sm-4 col-md-4 col-lg-4">
<a class="thumbnail blue-text" href="book/index.html">
<br>
<img src="img/book-logo.png" alt="Latest Developments in Software Engineering Book">
<div class="caption">
<h4 class="text-center">Latest Developments in Software Engineering</h4>
<p class="text-center">A textbook on the useful bits.</p>
</div>
</a>
</div>
</div>
</div>
<hr> <!-------------------------------------------->
<div class="row">
<div class="text-center">
<p>Other <a href="/other/index.html">open science portals...</a></p>
</div>
</div>
</div>
<!-- JQuery and Bootstrap -->
<script src="https://code.jquery.com/jquery.js"></script>
<script src="/js/bootstrap.min.js"></script>
<!-- Google Analytics -->
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-60713028-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>