This repository was archived by the owner on Dec 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (87 loc) · 2.71 KB
/
index.html
File metadata and controls
89 lines (87 loc) · 2.71 KB
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
---
layout: default
---
<script>
$(function($) {
$("body").addClass("home");
});
</script>
<div class="row">
<div class="col-md-8 col-md-offset-1">
<h1>
Linking Research Data and Publications
</h1>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2 col-sm-12">
<div class="intro hidden-xs">
<p>The goal of the InFoLiS project was to connect research data and publications. Links between data and literature are created automatically and made available for seamless integration into different retrieval systems.</p>
<p>
Please check our <a href="https://github.com/infolis/">GitHub repository</a> for the source code.
<!-- All services for link creation are publicly usable as <a href="http://infolis.gesis.org/infolink/api">web services</a>, but it's in rapid <a href="https://github.com/infolis/">development</a> . Please try the services and contribute by <a href="https://github.com/infolis/infolis-web/issues">creating issues</a> and by getting <a href="/reuse">in touch</a> with us. -->
</p>
</div>
</div>
</div>
<div class="row">
<div class="parts">
<div class="col-sm-4 col-md-2 col-md-offset-2">
<div class="part">
<a href="/about">
<img src="/img/icon-question-mark.png"/>
<br class="hidden-xs"/>
<span class="btn">Learn More</span>
</a>
</div>
</div>
<!--
<div class="col-sm-4 col-md-2">
<div class="part">
<a href="{{ site.baseurl_api }}/api">
<img src="/img/icon-swagger.png"/>
<br class="hidden-xs"/>
<span class="btn">Explore our API</span>
</a>
</div>
</div>
<div class="col-sm-4 col-md-2">
<div class="part">
<a href="{{ site.baseurl_api }}/play/data-model-explorer">
<img src="/img/icon-jsonld.png"/>
<br class="hidden-xs"/>
<span class="btn">Explore our Data Model</span>
</a>
</div>
</div>
-->
<div class="col-sm-4 col-md-2">
<div class="part">
<a href="/reuse">
<img src="/img/bw-puzzle-piece-two.png"/>
<br class="hidden-xs"/>
<span class="btn">Reuse our Infrastructure</span>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="posts">
<h2>Newest blog entries</h2>
{% for post in site.posts limit:5 %}
<div class="post-teaser">
<header>
<span class="meta">
{{ post.date | date: "%B %-d, %Y" }}
</span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
</header>
</div>
{% endfor %}
</div>
</div>
</div>