From ea2df0341be847af1df41e216b579c9c3fd3f2b8 Mon Sep 17 00:00:00 2001
From: Romain <10656815+romsto@users.noreply.github.com>
Date: Mon, 23 Sep 2024 08:40:12 +0000
Subject: [PATCH] added link of the publication in profiles
---
_layouts/person.html | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/_layouts/person.html b/_layouts/person.html
index d71aa89..66eca02 100644
--- a/_layouts/person.html
+++ b/_layouts/person.html
@@ -64,7 +64,11 @@
Contact
{% for publication in publications-year.papers %}
{% assign downcasedauthors = publication.authors | downcase %}
{% if downcasedauthors contains pubname %}
- {% assign ppublication = ppublication | append: publication.title | append: "|" | append: publication.venue | append: ";;" %}
+ {% if publication.url %}
+ {% assign ppublication = ppublication | append: publication.title | append: "|" | append: publication.venue | append: "|" | append: publication.url | append: ";;" %}
+ {% else %}
+ {% assign ppublication = ppublication | append: publication.title | append: "|" | append: publication.venue | append: ";;" %}
+ {% endif %}
{% endif %}
{% endfor %}
{% endfor %}
@@ -76,7 +80,11 @@ Publications