{% 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 }} on {{ travel_date_display }} 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 }} on {{ travel_date_display }} 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 %}

{% if journey_type == 'return' %}
Outbound: ← Prev {{ travel_date_display }} Next →
Return: ← Prev {{ return_date_display }} Next →
{% else %}
← Prev {{ travel_date_display }} Next →
{% endif %}
{% for destination_slug, destination_name, destination_url in destination_links %} {% if destination_slug == slug %} {{ destination_name }} {% else %} {{ destination_name }} {% endif %} {% endfor %}
{% if journey_type == 'return' %} {% for section in sections %}
{{ 'Outbound' if section.direction == 'outbound' else 'Return' }}: {% if section.direction == 'inbound' %}
{% endif %}
NR:
Eurostar:
{% endfor %}
Loading fares
{% else %} {% set section = sections[0] %}
NR ticket: Load advance prices
Loading fares
Eurostar:
{% endif %}

{% for section in sections %}
Loading {{ 'return' if section.direction == 'inbound' else 'outbound' }} results…
{% endfor %}

Connection windows: {% for section in sections %} {% if section.direction == 'inbound' %}return{% else %}outbound{% endif %} {{ section.min_connection }}–{{ section.max_connection }} min{% if not loop.last %}; {% endif %} {% endfor %}. National Rail prices from gwr.com. Eurostar prices are for 1 adult in GBP; return searches use Eurostar return-search prices. Always check eurostar.com to book.  ·  {{ departure_station_name }} on RTT  ·  Paddington on RTT

{% endblock %}