28 lines
814 B
JavaScript
28 lines
814 B
JavaScript
"use strict";
|
|
|
|
import { require as local } from "app-root-path";
|
|
|
|
const markdown = local("/app/components/markdown").default;
|
|
|
|
export default () => `
|
|
<div class="ecosystem__module lbrycrd">
|
|
<span class="__close" data-action="close">×</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">lbrycrd</a></span>
|
|
<span><a href="https://github.com/lbryio/torba">torba</a></span>
|
|
<span><a href="https://github.com/lbryio/lbryumx">lbryumx</a></span>
|
|
</div>
|
|
</h2>
|
|
|
|
<div class="ecosystem__module__details">
|
|
${markdown("./documents/partials/overview/lbrycrd.md")}
|
|
</div>
|
|
</div>
|
|
`;
|