xmpp.chapril.org-conversejs/src/plugins/headlines-view/templates/panel.js
Shaun Wu 9ea8653ef7 Upgrade to Webpack 3
Had to make various other changes due to incompatibilities.

- Use the new `lit` package instead of `lit-html` or `lit-element`
- Drop `haunted` since it breaks the rules by specifying `type: module`
  but then doesn't import with file extensions
- Use Sass Dart instead of node-sass (fixes #2445)
- Upgrade Karma
2021-04-30 13:50:50 +02:00

13 lines
428 B
JavaScript

import { html } from "lit";
import tpl_headline_list from "templates/headline_list.js";
export default (o) => html`
<div class="controlbox-section" id="headline">
<div class="d-flex controlbox-padded ${ o.headlineboxes.length ? '' : 'hidden' }">
<span class="w-100 controlbox-heading controlbox-heading--headline">${o.heading_headline}</span>
</div>
</div>
${ tpl_headline_list(o) }
`;