Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>{% block title %}Food Image Fraud Detector{% endblock %}</title> | |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> | |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" rel="stylesheet"> | |
| <link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet"> | |
| {% block head %}{% endblock %} | |
| </head> | |
| <body> | |
| <nav class="navbar navbar-expand-lg navbar-dark bg-primary sticky-top"> | |
| <div class="container"> | |
| <a class="navbar-brand d-flex align-items-center fw-bold" href="/"> | |
| <i class="bi bi-shield-check me-2"></i>FoodGuard | |
| </a> | |
| <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navContent"> | |
| <span class="navbar-toggler-icon"></span> | |
| </button> | |
| <div class="collapse navbar-collapse" id="navContent"> | |
| <ul class="navbar-nav ms-auto"> | |
| <li class="nav-item"> | |
| <a class="nav-link" href="/"><i class="bi bi-house me-1"></i>Home</a> | |
| </li> | |
| <li class="nav-item"> | |
| <a class="nav-link" href="/gallery"><i class="bi bi-images me-1"></i>Gallery</a> | |
| </li> | |
| <li class="nav-item"> | |
| <a class="nav-link" href="/about"><i class="bi bi-info-circle me-1"></i>About</a> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </nav> | |
| {% block content %}{% endblock %} | |
| <footer class="footer py-3 mt-5"> | |
| <div class="container text-center"> | |
| <span class="text-muted">© 2025 FoodGuard — Food Image Fraud Detector</span> | |
| </div> | |
| </footer> | |
| <div id="toast-container" class="position-fixed bottom-0 end-0 p-3" style="z-index: 1100"></div> | |
| <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script> | |
| <script src="{{ url_for('static', filename='js/app.js') }}"></script> | |
| {% block scripts %}{% endblock %} | |
| </body> | |
| </html> | |