modified: routes/auth_routes.py

modified:   routes/journal_routes.py
	modified:   static/css/style.css
	modified:   templates/base.html
	new file:   templates/datenschutz.html
	modified:   templates/future.html
	new file:   templates/impressum.html
This commit is contained in:
SimolZimol
2026-08-02 21:46:25 +02:00
parent 25d35e5556
commit 29cadb7fd3
7 changed files with 260 additions and 10 deletions

View File

@@ -45,7 +45,12 @@
</main>
<footer class="footer">
<p>Bullet Journal &copy; {{ now.year if now else 2026 }}</p>
<p>&copy; {{ now.year if now else 2026 }} Journal von Simon Giehl</p>
<p class="footer-links">
<a href="{{ url_for('auth.impressum') }}">Impressum</a>
<span>·</span>
<a href="{{ url_for('auth.datenschutz') }}">Datenschutz</a>
</p>
</footer>
<script src="{{ url_for('static', filename='js/main.js') }}"></script>