Skip to content

Commit

Permalink
Website: Fix unmatched ejs tag on homepage (#25800)
Browse files Browse the repository at this point in the history
Changes:
- Fixed an unmatched ejs tag on the homepage.
  • Loading branch information
eashaw authored Jan 28, 2025
1 parent f58d425 commit 97655d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/views/pages/homepage.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<%/* Hero text */%>
<div purpose="hero-text" class="d-flex flex-column justify-content-center">
<h1 class="mx-auto <%= primaryBuyingSituation%>"><%- partial('../partials/primary-tagline.partial.ejs') %></h1>
<p><% /* Replace cross-platform hacks with */<%= primaryBuyingSituation === 'vm'? 'Secure, open-source reporting that works the way you want' : primaryBuyingSituation === 'eo-security'? 'Open-source telemetry that works the way you want' : 'Lightning fast device management that lets employees see what\'s going on' %>.</p>
<p><%= /* Replace cross-platform hacks with */ primaryBuyingSituation === 'vm'? 'Secure, open-source reporting that works the way you want' : primaryBuyingSituation === 'eo-security'? 'Open-source telemetry that works the way you want' : 'Lightning fast device management that lets employees see what\'s going on' %>.</p>
<div purpose="button-row" class="d-flex flex-sm-row flex-column justify-content-center align-items-center">
<a purpose="cta-button" href="<%= primaryBuyingSituation === 'mdm' ? '/device-management' : primaryBuyingSituation === 'vm' ? '/vulnerability-management' : primaryBuyingSituation === 'eo-security' ? '/orchestration' : primaryBuyingSituation === 'eo-it' ? '/orchestration' : '/device-management' %>">Learn how</a>
<animated-arrow-button href="/contact">Talk to an engineer</animated-arrow-button>
Expand Down

1 comment on commit 97655d7

@mikermcneil
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry @eashaw. Thank you for fixing it. I got a little too excited.

Please sign in to comment.