diff --git a/src/posts/2026/2026-02-19-eleventy-lessons.md b/src/posts/2026/2026-02-19-eleventy-lessons.md
index 8f0eaebe..9a21078f 100644
--- a/src/posts/2026/2026-02-19-eleventy-lessons.md
+++ b/src/posts/2026/2026-02-19-eleventy-lessons.md
@@ -179,7 +179,7 @@ the post body looks similar:
{% raw %}
```html
{% if image.src %}
-
+
{% endif %}
```
{% endraw %}
@@ -360,7 +360,7 @@ first, I worked on previewing the first featured image. The focus here is on dig
{% set tagRecent = collections[tag] | reverse %}
{% if tagRecent[0].data.image.src %}
-
+
{% else %}
{% endif %}
@@ -389,7 +389,7 @@ I found that having just the first featured image made the tag page hard to diff
{% set tagRecent = collections[tag] | reverse %}
{% for i in range(0, 4) %}
{% if tagRecent[i].data.image.src %}
-
+
{% else %}
{% endif %}