Rename project to XMPP Journal Publisher;

Retrieve dates of PubSub node items;
Improve CSS stylesheet;
Fix JS error.
This commit is contained in:
Schimon Jehudah, Adv. 2024-07-11 20:56:20 +03:00
parent 16bd475be2
commit e07ff6e838
5 changed files with 41 additions and 30 deletions

View file

@ -51,11 +51,11 @@ window.onload = async function(){
let elementUl2 = document.createElement('ul');
elementDiv.appendChild(elementUl2);
links = [
{'text' : 'Subscribe from an XMPP client...',
{'text' : 'Subscribe from an XMPP client.',
'href' : `xmpp:${pubsub}?pubsub;action=subscribe;node=${node}`},
{'text' : 'Subscribe with a News Reader...',
{'text' : 'Subscribe with a News Reader.',
'href' : `feed://${location.host}/atom?pubsub=${pubsub}&node=${node}`},
{'text' : 'Browse the journal...',
{'text' : 'Browse the journal.',
'href' : `atom?pubsub=${pubsub}&node=${node}`}
]
for (let link of links) {