70 lines
1.6 KiB
Twig
70 lines
1.6 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">
|
|
<h1>Immorechner</h1>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="container">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p>© {{ "now"|date("Y") }} Immorechner - Powered by Symfony</p>
|
|
</div>
|
|
</footer>
|
|
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html>
|