diff --git a/content/papers.html b/content/papers.html index 5468ab6a..57c422f0 100644 --- a/content/papers.html +++ b/content/papers.html @@ -73,10 +73,12 @@ draft: false doilink.href=publi.URL doilink.innerText=String.raw`DOI: ${publi.DOI}` art.appendChild(doilink) - document.getElementById("papers_div").appendChild(art) + const lipub=document.createElement("li") + lipub.appendChild(art) + document.getElementById("papers_ul").appendChild(lipub) } } -