]> jfr.im git - uguu.git/commitdiff
Fix broken paths on templates
authorzkm <redacted>
Mon, 17 Apr 2023 01:29:24 +0000 (21:29 -0400)
committerzkm <redacted>
Mon, 17 Apr 2023 01:29:24 +0000 (21:29 -0400)
src/templates/faq.ejs
src/templates/index.ejs
src/templates/partials/footer.ejs
src/templates/tools.ejs

index 7de717647af9a678eb60a4c0c7d604110a52de1a..9becf5cde269f43b03e22e9f64dc3beaf1c80cd4 100644 (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'); -%>
\ No newline at end of file
+<%- include('./partials/footer.ejs'); -%>
\ No newline at end of file
index eca31c43173473ea0f49da91cad1656ea032ef4c..0e193fa8366cbce5d8518038d45f4d67af5c4bf6 100644 (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'); -%>
\ No newline at end of file
+<%- include('./partials/footer.ejs'); -%>
\ No newline at end of file
index 6f92e1c05ee18287d688a82b776213b247524745..3f2757c835d502be2519736a5bb7a69605ba83e6 100644 (file)
@@ -1,4 +1,4 @@
-<%- include('./src/templates/partials/nav.ejs'); -%>
+<%- include('./nav.ejs'); -%>
 </div>
 </body>
 </html>
\ No newline at end of file
index 5d761b44522a0c5889317367356bcf877b3f0cb8..cbee1b0ccbce3c9874b05b921e52c4764b3e310d 100644 (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'); -%>
\ No newline at end of file
+<%- include('./partials/footer.ejs'); -%>
\ No newline at end of file