diff --git a/index.html b/index.html
index 74037a5..325112f 100644
--- a/index.html
+++ b/index.html
@@ -67,11 +67,15 @@
posts.forEach(post => {
const li = document.createElement('li');
const a = document.createElement('a');
- a.textContent = post.title + '' + post.date + '';
+ const i = document.createElement('i');
+ a.textContent = post.title;
+ i.textContent = post.date;
a.href = post.type === 'html'
? 'posts/' + post.file
: 'post.html?file=' + encodeURIComponent(post.file);
li.appendChild(a);
+ a.appendChild(i);
+ i.classList.add("post-link-date");
list.appendChild(li);
});
} catch (err) {