diff --git a/html/landing.ejs b/html/landing.ejs
index c0984e4e..1a234724 100644
--- a/html/landing.ejs
+++ b/html/landing.ejs
@@ -166,9 +166,9 @@ const randomFeatures = features.sort(() => 0.5 - Math.random()).slice(0, 3);
 <div class="features-container">
   <% randomFeatures.forEach(feature => { %>
     <div class="feature">
-      <div class="feature-icon"><%= feature.icon %></div>
-      <h3><%= feature.title %></h3>
-      <p><%= feature.description %></p>
+      <div class="feature-icon"><%- feature.icon %></div>
+      <h3><%- feature.title %></h3>
+      <p><%- feature.description %></p>
     </div>
   <% }) %>
 </div>