Manage blog posts and articles
| Image | Title | Category | Status | Author | Published | Actions |
|---|---|---|---|---|---|---|
|
<% if (blog.featuredImage) { %>
|
<%= blog.title %>
<% if (blog.isFeatured) { %>
Featured
<% } %>
<%= blog.excerpt.substring(0, 60) %>...
|
<% if (blog.category && blog.category.length> 0) { %> <% blog.category.slice(0, 2).forEach(cat=> { %> <%= cat %> <% }); %> <% if (blog.category.length> 2) { %> +<%= blog.category.length - 2 %> <% } %> <% } else { %> - <% } %> | <% if (blog.status==='published' ) { %> Published <% } else { %> Draft <% } %> | <%= blog.author || 'Admin' %> | <%= blog.publishedAt || '-' %> |