lbry.tech/app/components/wrapper.js

33 lines
653 B
JavaScript
Raw Normal View History

2018-08-29 01:57:18 +02:00
"use strict";
// P A C K A G E
2018-08-29 18:58:55 +02:00
import asyncHtml from "choo-async/html";
2018-08-29 01:57:18 +02:00
// V A R I A B L E S
import footer from "./footer";
import Navigation from "./navigation";
const navigation = new Navigation();
// E X P O R T
2018-08-29 18:58:55 +02:00
module.exports = exports = children => (state, emit) => asyncHtml`
<main>
<noscript>
<p>LBRY is quite fancy and relies on a bit of JavaScript to do these fancy things.</p>
<p>Please enable it, if you can.</p>
</noscript>
${navigation.render({ href: state.href || "/" })}
<aside class="flashes" id="flash-container"></aside>
${children(state, emit)}
${footer(state, emit)}
</main>
`;