{% if page %} {% set this = page %} {% elif section %} {% set this = section %} {% endif %} <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="/css/style.css"/> {% block extra_head %} {% endblock %} </head> <body> <main class="flex flex-col items-center h-full min-h-screen bg-background-orig"> <div class="flex justify-center sticky top-0 w-full h-min z-50"> <div class="absolute max-w-5xl w-full h-fit p-8 pointer-events-none"> <div class="w-full h-full pointer-events-auto p-3 rounded-xl border border-text-100 drop-shadow-md backdrop-blur-sm" > <div class="flex gap-1"> <a class="hover:underline" href="/">{{ config.title }}</a> {% if current_url %} {% set_global path = "" %} {% for c in this.components %} {% set_global path = path ~ "/" ~ c %} <span>/</span> <a class="hover:underline" href="{{ path }}/">{{ c }}</a> {% endfor %} {% else %} <span>/</span> <p>404</p> {% endif %} </div> </div> </div> </div> <div class="max-w-5xl p-2 pt-28"> {% block content %} {% endblock %} </div> </main> </body> </html>