You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<!DOCTYPE html>
< html lang = "nl" >
< head >
<!-- =======================================================================
File: templates/layout.html
Purpose:
Globale layout voor alle pagina’ s
======================================================================= -->
< meta charset = "UTF-8" / >
< title > BookScraper< / title >
< meta name = "viewport" content = "width=device-width, initial-scale=1" / >
<!-- CSS -->
< link rel = "stylesheet" href = "/static/css/style.css" / >
< link rel = "stylesheet" href = "/static/css/dashboard.css" / >
<!-- GLOBAL HELPERS (moet ALTIJD boven alles geladen worden) -->
< script src = "/static/js/helpers.js" > < / script >
< / head >
< body >
{% include "components/nav.html" %}
< main class = "container" > {% block content %}{% endblock %}< / main >
< footer class = "footer" >
BookScraper © 2025 — Powered by Celery + Redis
< / footer >
<!-- GLOBAL APP LOGIC (altijd als laatste) -->
< script src = "/static/js/app.js" > < / script >
< / body >
< / html >