1
0
mirror of https://github.com/ipdb/website.git synced 2024-06-30 21:52:05 +02:00
website/_src/index.html

103 lines
3.2 KiB
HTML
Raw Normal View History

2017-08-10 11:34:26 +02:00
---
layout: base
2017-08-25 00:57:58 +02:00
2017-08-10 11:34:26 +02:00
front_page: true
css: page-front
2017-12-18 15:27:36 +01:00
redirect_from:
- /foundation/
- /foundation/articles/
- /foundation/satzung/
- /foundation/bylaws/
- /docs/
- /jobs/
- /privacy/
- /terms/
- /faq/
- /canary/
2017-08-10 11:34:26 +02:00
---
2017-08-24 16:07:25 +02:00
{% assign content = site.data.content-front %}
{% include oceanprotocol.html %}
2017-08-24 12:44:40 +02:00
<header class="hero section">
2017-08-24 13:47:28 +02:00
{% include menu-main.html %}
2017-08-10 11:34:26 +02:00
<div class="hero__content row">
<hgroup>
2017-08-29 16:58:25 +02:00
<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>
2017-08-10 11:34:26 +02:00
</hgroup>
</div>
2017-08-29 16:58:25 +02:00
<div class="starbase">
2017-08-29 18:28:23 +02:00
<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>
2017-08-29 16:58:25 +02:00
</div>
</div>
2017-08-29 18:01:36 +02:00
<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>
2017-08-10 11:34:26 +02:00
</header>
2017-08-24 11:57:30 +02:00
2017-12-18 21:58:01 +01:00
<section class="section section--farewell section--background" id="farewell">
2017-12-18 20:08:30 +01:00
<div class="row row--narrow">
2017-08-24 12:02:34 +02:00
<header class="section__header">
2017-12-18 20:08:30 +01:00
<h1 class="section__title">{{ content.farewell.title }}</h1>
2017-08-24 12:02:34 +02:00
</header>
2017-08-24 11:57:30 +02:00
2017-12-18 21:58:01 +01:00
<div class="lead">
{{ content.farewell.text | markdownify }}
</div>
2017-12-18 20:08:30 +01:00
2017-08-24 12:02:34 +02:00
</div>
2017-08-24 11:57:30 +02:00
</section>
2017-12-18 15:27:36 +01:00
<section class="section section--connect">
2017-08-24 12:02:34 +02:00
<div class="row">
<div class="connect connect--blog">
<div class="articles">
<div class="grid grid--full grid-small--half grid-medium--fourth grid--gutters">
2017-12-18 20:08:30 +01:00
{% 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>
2017-08-25 00:57:58 +02:00
<footer class="section__actions">
<a href="https://medium.com/ipdb-blog" class="button button--text">IPDB Blog</a>
</footer>
2017-08-25 00:16:33 +02:00
</div>
</div>
2017-08-24 11:57:30 +02:00
</div>
</section>