diff --git a/public/index.html b/public/index.html index 37967fe..f2b05b5 100644 --- a/public/index.html +++ b/public/index.html @@ -69,7 +69,7 @@ p.innerHTML = "Recent posts"; let elem = document.querySelector("#content>.content.posts>ul"); - elem.innerHTML = posts.slice(0, 3).map(x => `
  • ${x}
  • `).join("\n"); + elem.innerHTML = posts.slice(0, 3).map(x => `
  • ${x}
  • `).join("\n"); elem.style.maxWidth = "40ch"; elem.classList.add("posts"); })()