2019-01-25 19:07:53 +01:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// I M P O R T
|
|
|
|
|
|
|
|
import html from "choo/html";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// E X P O R T
|
|
|
|
|
|
|
|
export default () => html`
|
|
|
|
<article class="page" itemtype="http://schema.org/BlogPosting">
|
|
|
|
<header class="page__header">
|
|
|
|
<div class="page__header-wrap">
|
|
|
|
<div class="inner-wrap">
|
|
|
|
<h1 class="page__header__title" itemprop="name headline">Dev Program</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<section class="page__content" itemprop="articleBody">
|
|
|
|
<div class="inner-wrap">
|
|
|
|
<p>...</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
`;
|
2019-01-31 16:35:20 +01:00
|
|
|
|
|
|
|
// TODO:
|
|
|
|
// Provide flow where user logs in with GitHub:
|
|
|
|
// - get access token
|
|
|
|
// - show field for user to enter their wallet address
|
|
|
|
// - send access token and wallet address to API
|
|
|
|
// - parse response
|