forked from ipdb/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (83 loc) · 3.16 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
---
layout: base
front_page: true
css: page-front
redirect_from:
- /foundation/
- /foundation/articles/
- /foundation/satzung/
- /foundation/bylaws/
- /docs/
- /jobs/
- /privacy/
- /terms/
- /faq/
- /canary/
---
{% assign content = site.data.content-front %}
{% include oceanprotocol.html %}
<header class="hero section">
{% include menu-main.html %}
<div class="hero__content row">
<hgroup>
<div class="grid grid--full grid-medium--columns grid--gutters">
<div class="grid__col grid__col--4">
<h1 class="hero__title">{{ content.hero.title }}</h1>
<h2 class="hero__description">{{ content.hero.description }}</h2>
</div>
</div>
</hgroup>
</div>
<div class="starbase">
<div class="starbase-wrap">
<div class="row">
<svg class="starbase__item starbase__item--stones" width="234" height="80">
<use xlink:href="/assets/img/sprite.svg#starbase-stones"></use>
</svg>
<svg class="starbase__item starbase__item--mooncycle" width="59" height="31">
<use xlink:href="/assets/img/sprite.svg#starbase-mooncycle"></use>
</svg>
<svg class="starbase__item starbase__item--towers" width="673" height="389">
<use xlink:href="/assets/img/sprite.svg#starbase-towers"></use>
</svg>
</div>
</div>
</div>
<svg class="starbase-rocket" width="49" height="176">
<use xlink:href="/assets/img/sprite.svg#starbase-rocket"></use>
</svg>
<svg class="starbase-rocket" width="49" height="176">
<use xlink:href="/assets/img/sprite.svg#starbase-rocket"></use>
</svg>
</header>
<section class="section section--farewell section--background" id="farewell">
<div class="row row--narrow">
<header class="section__header">
<h1 class="section__title">{{ content.farewell.title }}</h1>
</header>
<div class="lead">
{{ content.farewell.text | markdownify }}
</div>
</div>
</section>
<section class="section section--connect">
<div class="row">
<div class="connect connect--blog">
<div class="articles">
<div class="grid grid--full grid-small--half grid-medium--fourth grid--gutters">
{% for article in site.articles limit: 4 %}
<div class="grid__col">
<a class="article" href="{{ article.link }}">
<figure class="article__image" style="background-image: url('{{ article.image | escape | strip_html }}')"></figure>
<h1 class="article__title">{{ article.title }}</h1>
</a>
</div>
{% endfor %}
</div>
<footer class="section__actions">
<a href="https://medium.com/ipdb-blog" class="button button--text">IPDB Blog</a>
</footer>
</div>
</div>
</div>
</section>