fix: escapes
This commit is contained in:
parent
055bc57fb8
commit
6387f2b26f
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "5.0.2",
|
||||
"version": "5.0.3",
|
||||
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<div class="avatar__wrapper flex--centered">
|
||||
<img
|
||||
src="{{ mention.author.photo }}"
|
||||
alt="{{ mention.author.name }}"
|
||||
alt="{{ mention.author.name | escape }}"
|
||||
class="avatar__image"
|
||||
loading="lazy"
|
||||
onerror="this.onerror=null; this.src='/assets/img/icons/user.webp'" />
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<div class="avatar__wrapper flex--centered">
|
||||
<img
|
||||
src="{{ mention.author.photo }}"
|
||||
alt="{{ mention.author.name }}"
|
||||
alt="{{ mention.author.name | escape }}"
|
||||
class="avatar__image"
|
||||
loading="lazy"
|
||||
onerror="this.onerror=null; this.src='/assets/img/icons/user.webp'" />
|
||||
|
|
Reference in a new issue