<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>{% block title %}CogniEdu{% endblock %}</title> <meta name="viewport" content="width=device-width, initial-scale=1"> {# Bootstrap 5 #} <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" > {# Custom theme overrides #} <link rel="stylesheet" href="{{ asset('css/theme.css') }}"> {# after bootstrap + app.css #} <link rel="stylesheet" href="{{ asset('css/brand-overrides.css') }}"> {% block stylesheets %}{% endblock %}</head><body class="bg-white text-dark">{# Skip link for accessibility #}<a href="#main" class="visually-hidden-focusable">Skip to content</a><!-- ===== Header ===== --><header class="border-bottom bg-white"> <div class="container-fluid px-4 py-2 d-flex align-items-center justify-content-between"> <!-- Brand --><a href="{{ path('home') }}" class="d-flex align-items-center text-decoration-none"> <img src="{{ asset('images/cogni_logo.png') }}" alt="CogniEdu logo" style="height:70px; width:auto;" class="me-2" > <span class="fw-semibold fs-5 text-dark"></span></a> <!-- Navigation --> {% set r = app.request.attributes.get('_route') %} <nav class="d-none d-md-flex gap-4 ce-nav"> <a class="text-decoration-none fw-medium {{ r == 'platform' ? 'active' : '' }}" href="{{ path('platform') }}">Platform</a> <a class="text-decoration-none fw-medium {{ r == 'solutions' ? 'active' : '' }}" href="{{ path('solutions') }}">Solutions</a><!-- <a class="text-decoration-none fw-medium {{ r == 'insights' ? 'active' : '' }}" href="{{ path('insights') }}">Insights GPT</a> --><!-- <a class="text-decoration-none fw-medium {{ r == 'enrollment_analytics' ? 'active' : '' }}" href="{{ path('enrollment_analytics') }}">Analytics Grok</a>--><!-- <a class="text-decoration-none fw-medium {{ r == 'docs_enrollment_intelligence' ? 'active' : '' }}" href="{{ path('docs_enrollment_intelligence') }}">Josh</a>--><!-- <a class="text-decoration-none fw-medium {{ r == 'keith1' ? 'active' : '' }}" href="{{ path('keith1') }}">Keith1</a>--><!-- <a class="text-decoration-none fw-medium {{ r == 'keith2' ? 'active' : '' }}" href="{{ path('keith2') }}">Keith2</a>--> <a class="text-decoration-none fw-medium {{ r == 'security' ? 'active' : '' }}" href="{{ path('security') }}">Security</a> <a class="text-decoration-none fw-medium {{ r == 'about' ? 'active' : '' }}" href="#">About</a> </nav> <!-- CTA --> <div class="d-flex gap-2"> <a href="{{ path('contact') }}" class="btn btn-outline-secondary btn-sm">Contact</a> <a href="{{ path('request_demo') }}" class="btn btn-primary btn-sm">Request Demo</a> </div> </div></header><!-- ===== Main Content ===== --><main id="main"> {% block body %}{% endblock %}</main><!-- ===== Footer ===== --><footer class="border-top bg-light mt-5"> <div class="container py-4"> <div class="row align-items-center gy-3"> <div class="col-md-6 small text-muted"> © {{ "now"|date("Y") }} CogniEdu. All rights reserved. </div> <div class="col-md-6 text-md-end small"> <a href="{{ path('privacy') }}" class="text-muted text-decoration-none me-3">Privacy</a> <a href="{{ path('security') }}" class="text-muted text-decoration-none me-3">Security</a> <a href="{{ path('contact') }}" class="text-muted text-decoration-none">Contact</a> </div> </div> </div></footer><script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>{% block javascripts %}{% endblock %}</body></html>