<% books.forEach(function(book,index){ %>
<% data[book.name].story.posts.forEach(function(post,index){ %>
<% if(post.links.length){ %>
<% }); %>
<% }) %>
<%= book.title %> Resources
<%= book.description %>
- <%= book.title %> Home Page »
- Table Of Contents » <% for (const [name, url] of Object.entries(book.links)) { %>
- <%= name %> <% } %>
#<%= post.number %>: <%= post.title %>
<%= post.timestamp %>
<%= post.text.split(/:|\.|,/).slice(0,6) + '...' %>
-
<% post.links.forEach(function(link,index){ %>
- <%= index+1 %>. <%= link.title %> (<%= link.hostname %>) <% }); %>
<% books.forEach(function(book,index){ %>
<%= book.title %>
<% }); %>
Top