// https://api.lbry.io/file/list_homepage // https://api.lbry.io/file/list_trending "use strict"; // P A C K A G E S const dedent = require("dedent"); const html = require("choo-async/html"); const raw = require("nanohtml/raw"); // E X P O R T module.exports = exports = () => html`
${raw(content())}
`; function sidebar() { // TODO: Save tutorial position to localStorage // "active" class is added dynamically return dedent`
  • Get details of media (aka, "claim" metadata)
  • Create a meme and upload it to the LBRY blockchain
  • Support creators on LBRY with a tip, on us!
  • `; } function content() { return html`

    Some content here

    `; }