diff --git a/_includes/head.html b/_includes/head.html
index 9c5ccf4..f9a8c3c 100644
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -124,7 +124,10 @@
const image = document.createElement("img");
image.src = like.author.photo;
image.alt = `Avatar for ${like.author.name}`;
- likesAvatars.append(image);
+ const link = document.createElement("a");
+ link.href = like.author.url;
+ link.append(image);
+ likesAvatars.append(link);
});
likesWrapper.append(likesAvatars);
@@ -181,11 +184,13 @@
row.append(cell);
const author = document.createElement("p");
author.className = "author-wrapper";
- author.innerHTML = `![Avatar for ${
+ author.innerHTML = `<a href=]()
${
+ }" /> ${
reply.author.name
}${new Date(
reply.published