14 lines
464 B
Plaintext
14 lines
464 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="<%= config.charset %>">
|
|
<head>
|
|
<%- include("../partials/head") %>
|
|
</head>
|
|
<body>
|
|
<% for (let postID = 0; postID < comments.length; postID++) { %>
|
|
<% for (let comment_index = 0; comment_index < comments[postID].length; comment_index++) { %>
|
|
<a href="/comment/<%= postID %>-<%= comment_index %>"><%= postID %>-<%= comment_index %></a><br/>
|
|
<% }; %>
|
|
<% }; %>
|
|
</body>
|
|
</html>
|