Directory Tree
(here is where all the raw files are)
-
<% function renderTree(items, indentLevel = 0) { %>
<% items.forEach(item => { %>
-
<% if (item.type === 'directory') { %>
<%= item.name %>
<% if (item.children && item.children.length > 0) { %>
-
<%= renderTree(item.children, indentLevel + 1) %>
<% }); %>
<% } %>
<%= renderTree(paths) %>
Rendered Pages
Files
/favicon.ico <-- icon /robots.txt <-- tells some robots to go away