<%- include('partials/navbar') %>

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) %>
    <% } %> <% } else { %> <%= item.name %> <% } %>
  • <% }); %> <% } %> <%= renderTree(paths) %>

Rendered Pages

these are the thingies that you see when you use my site like a normal person (in a browser, hopefully)

/ <-- Main Page
/music <-- My Youtube Music playlist
/source <-- You are here :P
/art <-- My art ^.^
/blog <-- My crappy blog

Files

/favicon.ico <-- icon
/robots.txt <-- tells some robots to go away