Skip to content

Commit

Permalink
Update load_publications.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nwoyecid authored Jul 26, 2024
1 parent 18dd5e7 commit 52192bd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions assets/js/load_publications.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,15 @@ document.addEventListener('DOMContentLoaded', () => {
publicationElement.innerHTML = `
<h2>${pub.title}</h2>
<p><strong>Authors:</strong> ${pub.authors}</p>
<p><strong>Journal:</strong> ${pub.journal}</p>
<p><strong>Journal:</strong> ${pub.journal} (${pub.year})</p>
<img src="${pub.image}" alt="${pub.title}" />
<p>${pub.abstract}</p>
<p>
<a href="${pub.links.arxiv}">arXiv</a> |
<a href="${pub.links.publication}">Publication</a> |
<a href="${pub.links.project}">Project</a> |
<a href="${pub.links.code}">Code</a> |
<a href="${pub.links.project}">Project</a>
<a href="${pub.links.bibtex}">Bibtex</a>
</p>
`;

Expand Down

0 comments on commit 52192bd

Please sign in to comment.