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 title = e.querySelector("title").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");
a.href = uri;
a.href = link;
a.innerText = title;
var dt = document.createElement("dt");