diff --git a/content/papers.html b/content/papers.html index 4fdaf9dc..9ee14220 100644 --- a/content/papers.html +++ b/content/papers.html @@ -44,6 +44,9 @@ draft: false } var notifycontent=document.createElement("div") notifycontent.className="author-info" + const notifyhead=document.createElement("h1") + notifyhead.innerText=String.raw`${author.given} ${author.family}` + notifycontent.appendChild(notifyhead) const ulaff=document.createElement("ul") ulaff.className="affiliation-list" notifycontent.appendChild(ulaff) diff --git a/static/css/paper.css b/static/css/paper.css index c408d211..b3092b63 100644 --- a/static/css/paper.css +++ b/static/css/paper.css @@ -14,7 +14,8 @@ ul.papers-list{ } .paper ul.authors-list li.author-item{ - display: inline + display: inline; + cursor: default } .paper ul.authors-list li.author-item:after @@ -43,7 +44,11 @@ ul.papers-list{ display: inline; } .author-info { - font-size: 18x + font-size: 14px; + cursor: initial +} +.author-info h1 { + font-size: larger } .author-info ul.affiliation-list{ list-style: none;