feature/fully implemented ejs inclusion to main files

This commit is contained in:
Joaquin committed 2025-05-05 21:56:47 -07:00
1 parent decdb299b7
commit 54566f05b7
12 files changed
+57 -87

No files matched your search

+6 -12
View File
@@ -1,15 +1,9 @@
<%- include("./partials/fileHeader", {title: "RCalculator"}) %>
<%- include("./partials/fileHeader") %>
<%- include("./partials/header") %>
<body>
<main>
The Index Page
<footer>
<div class="fixed bottom-0 left-0 z-50 sm:hidden lg:block w-full h-16 bg-gray-100 dark:bg-gray-800 border-t border-gray-200 dark:border-gray-700 p-6 text-center text-gray-500 dark:text-gray-400 text-sm">
<div class="container mx-auto">
<p>&copy; 2025 RCalculator. All rights reserved.</p>
</div>
</div>
<%- include("./partials/navBar") %>
</footer>
</body>
</main>
</html>
<%- include("./partials/navBar") %>
<%- include("./partials/footer") %>