Adapt publication card to handle missing URLs (#1017)

* Allow for personalized titles for Blog and Note pages

* Adapt publication card to handle better the case when URL in authors, publication and paper are not used.
This commit is contained in:
Andrea Maiani 2024-12-19 09:24:52 +01:00 committed by GitHub
parent 4e4acdbb6b
commit 047bb517cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 21 additions and 1 deletions

View file

@ -24,6 +24,14 @@
float: right !important;
}
}
a[href] {
text-decoration: underline; /* Underline only when href is present */
}
a:not([href]) {
text-decoration: none; /* No underline when href is absent */
}
}
.card-body {