<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Directory <!--DIRDIR--></title> <meta name="viewport" content="width=device-width, initial-scale=1"> <script> var listing=[/*LISTINGLISTING*/]; window.addEventListener("load",function(){ document.getElementById("dirdir").innerHTML=document.title.slice(10); var i,div,a; var e=document.getElementById("listing"); var pathname=location.pathname; if(pathname[pathname.length-1]=="/")pathname=pathname.slice(0,pathname.length-1); for(i=0;i<listing.length;i++){ div=document.createElement("div"); a=document.createElement("a"); a.innerHTML=listing[i]; a.setAttribute("href",pathname+"/"+listing[i]); div.appendChild(a); e.appendChild(div); } }); </script> </head> <body> <h1>Directory <span id="dirdir">><</span></h1> <hr> <div id="listing"></div> </body> </html>