Start maintenance mode

This commit is contained in:
Murat Özkorkmaz
2025-10-10 11:53:45 +02:00
parent abb3cbc1bd
commit 8a3b127675
5 changed files with 51 additions and 10 deletions

View File

@@ -17,6 +17,7 @@
{% endblock %}
</head>
<body class="min-h-screen flex flex-col">
<!--
<div>
<span class="">default</span>
<span class="invisible sm:visible">sm</span>
@@ -25,7 +26,9 @@
<span class="invisible xl:visible">xl</span>
<span class="invisible 2xl:visible">2xl</span>
</div>
-->
{% block navigation %}
{% set current_path = app.request.get('_route') %}
<nav class="bg-white pt-16 pb-24">
<div class="px-4 sm:px-8 md:px-16 lg:px-32 flex justify-between items-center h-16">
@@ -34,7 +37,7 @@
</div>
<!-- Desktop Links -->
<div class="hidden md:flex space-x-1">
<!-- <div class="hidden md:flex space-x-1">
<span class="px-4 py-4 bg-white text-black">
<span class="py-1 {% if current_path == 'about_me'%}border-b-1 border-black{% endif %}">
<a href="{{ path('about_me') }}" class="font-thin">Über mich</a>
@@ -55,21 +58,21 @@
<a href="{{ path('contact') }}" class="font-thin">Kontakt</a>
</span>
</span>
</div>
</div> -->
<!-- Hamburger -->
<div class="md:hidden">
<!-- <div class="md:hidden">
<button id="menu-btn" class="focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div> -->
</div>
<!-- Mobile Drawer -->
<div id="mobile-menu" class="max-h-0 overflow-hidden md:hidden transition-all duration-300 ease-in-out">
<!-- <div id="mobile-menu" class="max-h-0 overflow-hidden md:hidden transition-all duration-300 ease-in-out">
<span class="px-3 py-4 bg-white text-black">
<span class="py-1 {% if current_path == 'about_me'%}border-b-1 border-black{% endif %}">
<a href="{{ path('about_me') }}" class="font-thin">Über mich</a>
@@ -90,14 +93,16 @@
<a href="{{ path('contact') }}" class="font-thin">Kontakt</a>
</span>
</span>
</div>
</nav>
</div> -->
</nav>
{% endblock %}
<main class="flex-grow">
{% block body %}{% endblock %}
</main>
{% block footer %}
<footer class="bg-black text-white">
<div class="px-4 sm:px-8 md:px-16 lg:px-32 pb-16">
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6 mt-16 mb-8">
@@ -127,7 +132,7 @@
</p>
</div>
</footer>
{% endblock %}
</body>
{% block javascripts %}