forked from pelagios/pelagios.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (51 loc) · 1.88 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
---
layout: default
title: Welcome to Pelagios Network
---
<div class="blurb--home">
<p>The Pelagios Network connects researchers, scientists and curators to link and explore the history of places.</p>
<div class="link-about">
<a class="cta" href="/about-us" >More about Pelagios</a> <a class="cta" href="/contact-us" >Become a Partner</a>
</div>
</div><!-- /.blurb -->
<div class="cta--home">
<a class="cta groups" href="https://groups.google.com/d/forum/pelagios-network" >Join the discussion</a>
<a class="cta blog" href="https://medium.com/pelagios" >Read our blog</a>
<a class="cta recogito" href="https://recogito.pelagios.org/" >Discover Recogito</a>
<a class="cta github" href="https://github.com/pelagios" >Find us on Github</a>
</div>
<div class="case-studies--home-wrapper">
<div class="case-studies--home">
{% for case-study in site.case-studies limit:5 %}
<div class="case-study--teaser">
<a href={{ case-study.url }}>
<img src="{{ case-study.image }}" width="400px">
<div class="case-study--title">
<h2>{{ case-study.title }} </h2>
</div>
</a>
</div>
{% endfor %}
</div>
<div class="morecs">
<a href="/case-studies">See all case studies</a>
</div>
</div>
<div id="video-container">
<div class="video">
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/MVaFbBvY6bA" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="activities--home">
<h2>The activities of the Pelagios network</h2>
{% assign sorted_activities = site.activities | sort:'name' %}
{% for activity in sorted_activities %}
<div class="activity--teaser">
<a href={{ activity.url }}>
<img src="{{ activity.image }}" width="115px">
<h3>{{ activity.title }}</h3>
<p>{{ activity.excerpt | strip_html }}</p>
</a>
</div>
{% endfor %}
</div>