import { NodesBase } from "./NodesBase"; export class Posts extends NodesBase { static create$item(post) { let content = []; let $title = $('
') .addClass('h2 text-uppercase font-weight-bold mt-4 mb-3') .text(post.name); content.push($title); let $post = $('
') .addClass('expand-image-links imgs-fluid') .append( content, $('
') .addClass('node-details-description mx-auto') .html(post['properties']['pretty_content']) ); return $post; } }