Skip to content

Commit 0b0aaaf

Browse files
committed
fix: don't escape includes directives
1 parent 0b22570 commit 0b0aaaf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/server/views/404.error.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<body>
1919
<% if(assetVariant === 'gov') { %>
20-
<%= include('partial-masthead') %>
20+
<%- include('partial-masthead') %>
2121
<% } %>
2222
<main id="main-container">
2323
<div id="main-message-container">

src/server/views/transition-page.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<body>
1919
<% if(assetVariant === 'gov') { %>
20-
<%= include('partial-masthead') %>
20+
<%- include('partial-masthead') %>
2121
<% } %>
2222
<div class="top-half">
2323
<div class="top-half-content">

0 commit comments

Comments
 (0)