Files
immorechner/templates/base.html.twig
2025-11-09 11:12:48 +01:00

82 lines
2.7 KiB
Twig

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Immorechner{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
{% block stylesheets %}
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #4CAF50;
color: white;
padding: 1rem 0;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header h1 {
margin: 0;
padding: 0 20px;
}
main {
margin-top: 20px;
}
footer {
margin-top: 50px;
padding: 20px;
text-align: center;
color: #666;
border-top: 1px solid #ddd;
}
</style>
{% endblock %}
</head>
<body>
<header>
<div class="container">
<div style="display: flex; justify-content: space-between; align-items: center;">
<h1><a href="{{ path('app_home') }}" style="color: white; text-decoration: none;">Immorechner</a></h1>
<nav>
{% if app.user %}
<span style="color: white; margin-right: 15px;">Hallo, {{ app.user.name }}!</span>
<a href="{{ path('app_my_immobilien') }}" style="color: white; text-decoration: none; margin-right: 10px;">Meine Immobilien</a>
<a href="{{ path('app_logout') }}" style="color: white; text-decoration: none; padding: 8px 16px; background-color: rgba(255,255,255,0.2); border-radius: 4px;">Abmelden</a>
{% else %}
<a href="{{ path('app_login') }}" style="color: white; text-decoration: none; margin-right: 10px;">Anmelden</a>
<a href="{{ path('app_register') }}" style="color: white; text-decoration: none; padding: 8px 16px; background-color: rgba(255,255,255,0.2); border-radius: 4px;">Registrieren</a>
{% endif %}
</nav>
</div>
</div>
</header>
<main>
<div class="container">
{% block body %}{% endblock %}
</div>
</main>
<footer>
<div class="container">
<p>&copy; {{ "now"|date("Y") }} Immorechner - Powered by Symfony</p>
</div>
</footer>
{% block javascripts %}{% endblock %}
</body>
</html>