diff --git a/package.json b/package.json index fe1714d7..7b1f7690 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "4.3.2", + "version": "4.3.3", "description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": { diff --git a/src/_includes/partials/webmentions/comments.liquid b/src/_includes/partials/webmentions/comments.liquid index c89fa8c2..e0e6f506 100644 --- a/src/_includes/partials/webmentions/comments.liquid +++ b/src/_includes/partials/webmentions/comments.liquid @@ -6,7 +6,11 @@
- {% image mention.author.photo, mention.author.name, 'avatar__wrapper-image' %} + {{ mention.author.name }}
diff --git a/src/_includes/partials/webmentions/interaction.liquid b/src/_includes/partials/webmentions/interaction.liquid index 12d7a833..56bbd843 100644 --- a/src/_includes/partials/webmentions/interaction.liquid +++ b/src/_includes/partials/webmentions/interaction.liquid @@ -11,7 +11,11 @@ {% for mention in mentions[type] %}
- {% image mention.author.photo, mention.author.name, 'avatar__wrapper-image' %} + {{ mention.author.name }}
{% endfor %} diff --git a/src/assets/img/icons/user.webp b/src/assets/img/icons/user.webp new file mode 100644 index 00000000..325bab2d Binary files /dev/null and b/src/assets/img/icons/user.webp differ diff --git a/src/assets/styles/widgets/webmentions.css b/src/assets/styles/widgets/webmentions.css index d8f593fa..1752b993 100644 --- a/src/assets/styles/widgets/webmentions.css +++ b/src/assets/styles/widgets/webmentions.css @@ -90,6 +90,15 @@ .webmentions .interaction .avatar__wrapper .avatar__wrapper-image > * { width: 100%; height: 100%; +} + +.webmentions .interaction .avatar__wrapper img { + width: 101%; + height: 101%; +} + +.webmentions .interaction .avatar__wrapper img, +.webmentions .interaction .avatar__wrapper .avatar__wrapper-image > * { border-radius: var(--rounded-full); }