Index of /dl/torrents/
| File Name ↓ | File Size ↓ | Date ↓ |
| Parent directory/ | - | - |
(async function() {
const header = document.createElement('header')
const footer = document.createElement('footer')
const ipns = '/ipns/k51qzi5uqu5dhirys5nni4ad4nid4michfkvjpwkudtnav7wppj60gymdhry2d'
const ipns_path = ipns + window.location.pathname.substr(3)
header.innerText = ipns_path
document.querySelector('h1').insertAdjacentElement('afterEnd', header)
const f = await fetch(window.location.href, {method: 'HEAD'})
const cid = f.headers.get('x-ipfs-path')
if (cid) {
footer.innerText = cid
document.body.appendChild(footer)
}
})();