<% const { type: p_type, title: p_title, content: p_content, comment: p_comment } = page const { menu: t_menu, links: t_links } = theme %>
<% const isLoadFriendsLink = ( t_menu?.Links && t_links && (p_type === 'links' || p_type === 'link' || p_title === 'links' || p_title === 'link') ) %> <% if (isLoadFriendsLink) { %> <%- partial('_partial/friends-link') %> <% } %>
<% if (isLoadFriendsLink || p_content) { %> <%- p_content %> <% } else { %>

<%- p_title %>

<% } %>
<% if (p_comment === true) { %>
<%- partial('_partial/comment/comment') %>
<% } %>