Files
blogger-nodejs/views/pages/comment.ejs
DeaDvey b683b658f7 Comments now have their own pages, at /comment/commentID, these are
linked to when someone replies to another comment (>> id), I also fixed
a bug in comment submission where the counter was not incrementing
2025-07-31 03:58:28 +01:00

12 lines
224 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<%- include('../partials/head'); %>
</head>
<body>
<div id="comment">
<%- include("../partials/comment"); %>
</div>
</body>
</html>