blob: c85a6aac0815b5bc39ada3f4c0d853488577db59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
function akModuleFiles(zblockIPFSHash, blockObject, json){
if (!document.querySelector('#file-'+zblockIPFSHash)){
var divs = document.querySelector('#files-section');
var art = document.createElement("article");
art.id = 'file-'+zblockIPFSHash;
if(json.title){
var h3 = document.createElement("h3");
h3.innerText = json.filename;
art.appendChild(h3);
}
if(json.datetime){
var small = document.createElement("p");
small.innerText="Published: " +json.datetime;
art.appendChild(small);
}
getNicknameAssossiatedWithGPG(blockObject.gpg);
var small = document.createElement("p");
small.innerText="Contributor: " + getNicknameAssossiatedWithGPG(blockObject.gpg);
art.appendChild(small);
if(json.ipfs){
// getipfstext(json.ipfs,art.id);
var small = document.createElement("a");
small.innerText=json.filename;
small.href="https://ipfs.arching-kaos.com/ipfs/"+json.ipfs+"?filename="+json.filename;
art.appendChild(small);
}
divs.appendChild(art);
if(document.querySelector("#files-sec-not-found")) document.querySelector("#files-sec-not-found").hidden = true;
divs.appendChild(document.createElement("hr"));
}
}
|