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