mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Website: Fix homepage and calendar-banner partial (#18826)
Related to: https://github.com/fleetdm/fleet/issues/18825 Changes: - Added a missing closing parenthesis to the conditional added to the homepage in https://github.com/fleetdm/fleet/pull/18822 and the calendar banner partial in https://github.com/fleetdm/fleet/pull/18824
This commit is contained in:
parent
ee8bd43c49
commit
df301648b0
2 changed files with 2 additions and 2 deletions
2
website/views/pages/homepage.ejs
vendored
2
website/views/pages/homepage.ejs
vendored
|
|
@ -42,7 +42,7 @@
|
|||
<h2>Tell employees why</h2>
|
||||
<p>Use AI to explain why your security policies matter, and install required updates en masse without locking people out of meetings.</p>
|
||||
<%} %>
|
||||
<% if (primaryBuyingSituation && !['eo-security'].includes(primaryBuyingSituation) { %><div purpose="calendar-checklist" class="flex-column d-flex">
|
||||
<% if (primaryBuyingSituation && !['eo-security'].includes(primaryBuyingSituation)) { %><div purpose="calendar-checklist" class="flex-column d-flex">
|
||||
<p>Say goodbye to annoying IT notifications and restarts.</p>
|
||||
<p>Use AI to explain why your security policies matter.</p>
|
||||
<p>Stop making exceptions for executives when OS updates lock them out of important meetings.</p>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
<h3>Tell employees why</h3>
|
||||
<p>Use AI to explain why your security policies matter, and install required updates en masse without locking people out of meetings.</p>
|
||||
<%} %>
|
||||
<% if (primaryBuyingSituation && !['eo-security'].includes(primaryBuyingSituation) { %><div purpose="calendar-checklist" class="flex-column d-flex">
|
||||
<% if (primaryBuyingSituation && !['eo-security'].includes(primaryBuyingSituation)) { %><div purpose="calendar-checklist" class="flex-column d-flex">
|
||||
<p>Say goodbye to annoying IT notifications and restarts.</p>
|
||||
<p>Use AI to explain why your security policies matter.</p>
|
||||
<p>Stop making exceptions for executives when OS updates lock them out of important meetings.</p>
|
||||
|
|
|
|||
Loading…
Reference in a new issue