update footer

This commit is contained in:
Ehab Hassan 2025-05-19 23:08:48 +03:00
parent 13425cb73c
commit 04a875c2c8
2 changed files with 7 additions and 5 deletions

View File

@ -24,11 +24,7 @@
</div> </div>
</main> </main>
<footer class="bg-white dark:bg-gray-900 shadow mt-auto"> <footer class="bg-white dark:bg-gray-900 shadow mt-auto">
<div class="max-w-7xl mx-auto py-4 px-4 sm:px-6 lg:px-8"> {% include "partials/footer.html" %}
<p class="text-center text-gray-500 dark:text-gray-400">
&copy; {{ now() | date(format="%Y") }} {{ config.title }}
</p>
</div>
</footer> </footer>
</body> </body>
</html> </html>

View File

@ -0,0 +1,6 @@
<div class="max-w-7xl mx-auto py-4 px-4 sm:px-6 lg:px-8">
<p class="text-center text-gray-500 dark:text-gray-400">
&copy; {{ now() | date(format="%Y") }} {{ config.title }}
</p>
</div>