{% extends "base.html" %} {% block title %}{% if journey_type == 'inbound' %}{{ destination }} to {{ departure_station_name }} via Eurostar{% elif journey_type == 'return' %}{{ departure_station_name }} to {{ destination }} return via Eurostar{% else %}{{ departure_station_name }} to {{ destination }} via Eurostar{% endif %}{% endblock %} {% block og_title %}{{ self.title()|trim }}{% endblock %} {% block og_description %}Train options from {{ departure_station_name }} to {{ destination }} via Paddington, St Pancras, and Eurostar.{% endblock %} {% block twitter_title %}{{ self.title()|trim }}{% endblock %} {% block twitter_description %}Train options from {{ departure_station_name }} to {{ destination }} via Paddington, St Pancras, and Eurostar.{% endblock %} {% block content %}

{% if journey_type == 'inbound' %} {{ destination }} → {{ departure_station_name }} {% elif journey_type == 'return' %} {{ departure_station_name }} ↔ {{ destination }} {% else %} {{ departure_station_name }} → {{ destination }} {% endif %}

{{ travel_date_display }}{% if return_date_display %} to {{ return_date_display }}{% endif %}

Loading train times and fares

Fetching National Rail, Eurostar, and fare data. Results will appear here as soon as they are ready.

{% endblock %}