1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2024-12-22 17:34:18 +03:00

docs: Fix Blog Planet links

They were pointing to the blogs instead, now they point the articles.

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
Martin Kletzander 2019-06-20 17:00:17 +02:00
parent 68e1a05fa4
commit 05ac854cc8

View File

@ -116,10 +116,10 @@ function fetchRSS() {
var name = e.querySelector("author > name").textContent; var name = e.querySelector("author > name").textContent;
var title = e.querySelector("title").textContent; var title = e.querySelector("title").textContent;
var updated = e.querySelector("updated").textContent; var updated = e.querySelector("updated").textContent;
var uri = e.querySelector("author > uri").textContent; var link = e.querySelector("link").attributes.href.textContent;
var a = document.createElement("a"); var a = document.createElement("a");
a.href = uri; a.href = link;
a.innerText = title; a.innerText = title;
var dt = document.createElement("dt"); var dt = document.createElement("dt");