2018-08-24 23:58:04 +02:00
|
|
|
"use strict";
|
|
|
|
|
2019-01-25 17:34:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
// U T I L
|
|
|
|
|
2019-01-30 00:29:14 +01:00
|
|
|
import markdown from "@component/markdown";
|
2018-08-24 23:58:04 +02:00
|
|
|
|
2019-01-25 17:34:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
// E X P O R T
|
|
|
|
|
2018-11-30 21:46:22 +01:00
|
|
|
export default () => `
|
2018-08-24 23:58:04 +02:00
|
|
|
<div class="ecosystem__submodule reflector">
|
|
|
|
<h3 class="ecosystem__submodule__title" data-action="openSubmodule" data-target="reflector">reflector</h3>
|
|
|
|
|
|
|
|
<div class="ecosystem__submodule__description">
|
2018-09-25 18:34:13 +02:00
|
|
|
<div class="ecosystem__submodule__markdown">
|
2019-01-17 22:50:06 +01:00
|
|
|
${markdown("./documents/partials/overview/reflector.md")}
|
2018-09-25 18:34:13 +02:00
|
|
|
</div>
|
2018-08-24 23:58:04 +02:00
|
|
|
|
|
|
|
<ul class="__parents">
|
|
|
|
<li class="__parent green" data-action="open" data-target="applications">Applications</li>
|
|
|
|
<li class="__parent red" data-action="open" data-target="lbrycrd">Blockchain</li>
|
|
|
|
<li class="__parent blue" data-action="open" data-target="lbry">Data Network</li>
|
|
|
|
<li class="__close" data-action="close">×</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|