We will be back with you shortly.

We are currently preparing something exceptional for your next journey. Our new travel experience will be available soon.

Website under construction
''' html_path = out_dir / "index.html" html_path.write_text(html, encoding="utf-8") shutil.copy2(logo_path, out_dir / logo_path.name) zip_path = Path("/mnt/data/Flymark_Travel_Centered_Under_Construction.zip") with zipfile.ZipFile(zip_path, "w", zipfile.ZIP_DEFLATED) as z: z.write(html_path, "index.html") z.write(out_dir / logo_path.name, logo_path.name) print(f"Created: {html_path}") print(f"Created package: {zip_path}")