lbry.tech/app/components/ecosystem/module-lbrycrd.js

37 lines
740 B
JavaScript
Raw Normal View History

2018-08-24 23:58:04 +02:00
"use strict";
2018-10-12 00:10:32 +02:00
// P A C K A G E
import { require as local } from "app-root-path";
// U T I L
const markdown = local("/app/components/markdown").default;
2018-08-24 23:58:04 +02:00
// E X P O R T
2018-08-25 00:30:58 +02:00
module.exports = exports = () => `
2018-08-24 23:58:04 +02:00
<div class="ecosystem__module lbrycrd">
<span class="__close" data-action="close">&times;</span>
<h2 class="__title">
<span data-action="open" data-target="lbrycrd">
Blockchain
<em>The foundation of the LBRY protocol</em>
</span>
<div>
<span><a href="https://github.com/lbryio/lbrycrd" title="lbrycrd repo">lbrycrd</a></span>
</div>
</h2>
<div class="ecosystem__module__details">
${markdown("./documents/partials/lbrycrd.md")}
2018-08-24 23:58:04 +02:00
</div>
</div>
`;