Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Fix remaining EJS upgrade issues
Browse files Browse the repository at this point in the history
Fixes #237
  • Loading branch information
scottmuc committed Apr 18, 2023
1 parent ca5825a commit aeeb773
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/tools.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<![endif]-->

<div class="container">
<% include _sidebar %>
<%- include('_sidebar'); %>

<div class="content">
<input type="text" id="search-input" onkeyup="filter()" placeholder="Search..">
<div class="content-grid">
<% _u.each(tools, function(tool) { %>
<% include _tool %>
<%- include('_tool', { tool: tool }); %>
<% }); %>
</div>
</div>
Expand Down

0 comments on commit aeeb773

Please sign in to comment.