<%= item.category.replace('-', ' ') %>
<%= new Date(item.createdAt).toLocaleDateString('ru-RU') %>
<% if (item.viewCount && item.viewCount > 0) { %>
<%= item.viewCount %> просмотров
<% } %>
<% if (item.technologies && item.technologies.length > 0) { %>
<%= item.technologies.slice(0, 2).join(', ') %><%= item.technologies.length > 2 ? '...' : '' %>
<% } %>