Kelola Artikel
Tambah ArtikelDaftar Artikel
<% if (posts && posts.length > 0) { %>
<% if (totalPosts > 0) { %>
<% } %>
<% if (totalPages > 1) { %>
<% } %>
<% } else { %>
<% } %>
Menampilkan <%= posts.length %> dari <%= totalPosts %> artikel
<% if (searchQuery) { %>Hasil pencarian untuk: "<%= searchQuery %>"
<% } %>No. | Judul | Game | Tanggal | Status | Aksi |
---|---|---|---|---|---|
<%= index + 1 %> |
<% if (post.featuredImage) { %>
<%= post.title %>
<%
// Fungsi untuk menghilangkan tag HTML
function stripHtmlTags(html) {
if (!html) return '';
return html.replace(/<\/?[^>]+(>|$)/g, "");
}
const plainText = stripHtmlTags(post.content);
%>
<%= plainText.length > 100 ? plainText.substring(0, 100) + '...' : plainText %>
|
<%= post.category || 'Umum' %> |
<%= new Date(post.date || post.createdAt).toLocaleDateString('id-ID', { day: 'numeric', month: 'short', year: 'numeric' }) %>
<%= new Date(post.date || post.createdAt).toLocaleTimeString('id-ID', { hour: '2-digit', minute: '2-digit' }) %>
|
Published |