diff options
Diffstat (limited to 'dirlisting.html')
-rw-r--r-- | dirlisting.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dirlisting.html b/dirlisting.html new file mode 100644 index 0000000..c5a8ecf --- /dev/null +++ b/dirlisting.html @@ -0,0 +1,32 @@ +<!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> |