diff --git a/contrib/static/krane.css b/contrib/static/krane.css index 405acad..d2ced68 100644 --- a/contrib/static/krane.css +++ b/contrib/static/krane.css @@ -550,3 +550,8 @@ background-repeat: repeat; .mod { color: red; } + +.post-link { + font-size: 24pt; + float: right; +} diff --git a/contrib/templates/placebo/post.mustache b/contrib/templates/placebo/post.mustache index 5e95a3e..7b3a3d4 100644 --- a/contrib/templates/placebo/post.mustache +++ b/contrib/templates/placebo/post.mustache @@ -57,6 +57,8 @@ var link = document.createElement("a"); link.href = u.toString(); link.innerText = "[Link]"; + link.setAttribute("target", "_blank"); + link.setAttribute("class", "post-link") e.appendChild(document.createElement("hr")); e.appendChild(link); }