<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Ferries to France</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous"> </head> {% from "individual_route.html" import route_table with context %} <body> <div class="m-3"> <p>{{ days_until_start }} days until start of Dodainville week: Friday 16 September 2022</p> <p><a href="{{ url_for(other + "_page") }}">{{ other }}</a></p> {% if extra_routes %} <ul> {% for dep, arr in extra_routes %} <li><a href="{{ url_for("show_route", departure_port=ports[dep], arrival_port=ports[arr], from_date=from_date, to_date=to_date) }}">{{ dep }} - {{ arr }}</a></li> {% endfor %} </ul> {% endif %} {% for dep, arr, days in data %} <h4>{{ dep.title() }} to {{ arr.title() }}</h4> {{ route_table(dep, arr, days) }} {% endfor %} </div> </body> </html>