Fix broken paths on templates

pull/82/head
zkm 2023-04-16 21:29:24 -04:00
parent a639591fe8
commit fc3ca8de2a
4 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
<%- include('./src/templates/partials/header.ejs'); -%>
<%- include('./partials/header.ejs'); -%>
<div class="container">
<article>
<div class="jumbotron">
@ -61,4 +61,4 @@
</div>
</article>
<%- include('./src/templates/partials/footer.ejs'); -%>
<%- include('./partials/footer.ejs'); -%>

View File

@ -1,15 +1,15 @@
<%- include('./src/templates/partials/header.ejs'); -%>
<%- include('./partials/header.ejs'); -%>
<div class="container">
<div class="jumbotron">
<%- include('./src/templates/partials/lead.ejs'); -%>
<%- include('./src/templates/partials/upload_form.ejs'); -%>
<%- include('./partials/lead.ejs'); -%>
<%- include('./partials/upload_form.ejs'); -%>
</div>
<% if (malwareBanner) { %>
<%- include('./src/templates/partials/malware_banner.ejs'); -%>
<%- include('./partials/malware_banner.ejs'); -%>
<% } %>
<% if (donationBanner) { %>
<%- include('./src/templates/partials/donation_banner.ejs'); -%>
<%- include('./partials/donation_banner.ejs'); -%>
<% } %>
<%- include('./src/templates/partials/footer.ejs'); -%>
<%- include('./partials/footer.ejs'); -%>

View File

@ -1,4 +1,4 @@
<%- include('./src/templates/partials/nav.ejs'); -%>
<%- include('./nav.ejs'); -%>
</div>
</body>
</html>

View File

@ -1,4 +1,4 @@
<%- include('./src/templates/partials/header.ejs'); -%>
<%- include('./partials/header.ejs'); -%>
<div class="container">
<div class="jumbotron">
<h1><%= siteName %> Tools</h1>
@ -56,4 +56,4 @@
</dl>
</section>
</div>
<%- include('./src/templates/partials/footer.ejs'); -%>
<%- include('./partials/footer.ejs'); -%>