import { NodesBase } from "./NodesBase"; export class Posts extends NodesBase { static create$item(post) { let content = []; let $title = $('') .attr('href', '/nodes/' + post._id + '/redir') .attr('title', post.name) .addClass('h1 text-uppercase font-weight-bold d-block pt-5 pb-2') .text(post.name); content.push($title); let $post = $('
') .addClass('expand-image-links imgs-fluid') .append( content, $('
') .addClass('node-details-description') .html(post['properties']['pretty_content']) ); return $post; } }