CINXE.COM

Events - Raildays

<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Events - Raildays</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <link rel="stylesheet" type="text/css" href="/assets/css/tailwind.css"> <link rel="stylesheet" type="text/css" href="/assets/css/splide/splide.min.css"> <link rel="stylesheet" type="text/css" href="/assets/css/calendar/caleandar.css"> <link rel="stylesheet" type="text/css" href="/assets/css/leaflet/leaflet.css"> <script type="text/javascript" src="/assets/js/leaflet/leaflet.js"></script> <script type="text/javascript" src="/assets/js/splide/splide.min.js"></script> <script type="text/javascript" src="/assets/js/calendar/caleandar.js"></script> <link rel="stylesheet" type="text/css" href="/assets/css/main.css"> <script src="//unpkg.com/alpinejs" defer></script> </head> <body id="body"> <div class="min-h-screen flex flex-col"> <header id="header" class="fixed left-0 top-0 w-full shadow-lg"> <div x-data="{open:false}" class="relative bg-white"> <div class=""> <div class="flex justify-between items-center"> <div class="flex justify-start lg:w-0 lg:flex-1"> <a href="/" class="flex items-center"> <img class="h-full" src="/assets/logo.svg" alt=""> <span class="logo-text">RAILDAYS</span> </a> </div> <div class="mr-4 flex md:hidden"> <button @click="open = !open" type="button" class="bg-white rounded-md p-2 inline-flex items-center justify-center text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false"> <span class="sr-only">Open menu</span> <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> </svg> </button> </div> <nav class="hidden md:flex shrink-0"> <a href="/" class="tracking-wide uppercase px-3 font-medium"> <span class="rounded px-6 py-3 text-gray-500 hover:text-gray-900">Home</span> </a> <a href="/railways" class="tracking-wide uppercase px-3 font-medium"> <span class="rounded px-6 py-3 text-gray-500 hover:text-gray-900">Railways</span> </a> <a href=" /events" class="tracking-wide uppercase px-3 font-medium"> <span class="rounded px-6 py-3 bg-brand text-gray-900">Events</span> </a> <a href=" /experiences" class="tracking-wide uppercase px-3 font-medium"> <span class="rounded px-6 py-3 text-gray-500 hover:text-gray-900">Experiences</span> </a> </nav> <div class="pr-10 hidden lg:flex items-center justify-end md:flex-1 lg:w-0" style="line-height: initial;"> <form method="GET" action="/search" class="relative"> <input type="text" name="search" class="rounded-lg -ml-px relative inline-flex items-center px-6 py-3 border border-gray-300 bg-white text-sm font-medium text-gray-700 hover:bg-gray-50 focus:z-10 focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500" placeholder="Search..." value=""> <div class="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6 text-gray-400"> <path stroke-linecap="round" stroke-linejoin="round" d="M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z" /> </svg> </div> <button type="submit" class="hidden">Search</button> </form> </div> </div> </div> <div x-show="open" x-transition:enter="transition ease-out duration-100 transform" x-transition:enter-start="opacity-0 scale-95" x-transition:enter-end="opacity-100 scale-100" x-transition:leave="transition ease-in duration-75 transform" x-transition:leave-start="opacity-100 scale-100" x-transition:leave-end="opacity-0 scale-95" class="absolute top-0 inset-x-0 p-2 transition transform origin-top md:hidden"> <div class="rounded-lg bg shadow-md ring-1 ring-black ring-opacity-5 overflow-hidden"> <div class="px-5 pt-4 flex items-center justify-between"> <div> <a href="/" class="flex items-center"> <span class="logo-text-mobile">RAILDAYS</span> </a> </div> <div class="-mr-2"> <button @click="open = !open" type="button" class="bg-white rounded-md p-2 inline-flex items-center justify-center text-gray-400 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-600"> <span class="sr-only">Close menu</span> <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" /> </svg> </button> </div> </div> <div class="pt-5 pb-6"> <div class="px-2 space-y-1" style="line-height: 20px!important;"> <a href="/" class="block px-3 py-2 rounded-md font-medium text-gray-900 hover:bg-gray-50">Home</a> <a href="/railways" class="block px-3 py-2 rounded-md font-medium text-gray-900 hover:bg-gray-50">Railways</a> <a href="/events" class="block px-3 py-2 rounded-md font-medium text-gray-900 hover:bg-gray-50">Events</a> <a href="/experiences" class="block px-3 py-2 rounded-md font-medium text-gray-900 hover:bg-gray-50">Experiences</a> </div> </div> </div> </div> </div> </header> <main class="flex-grow m-4 md:m-6 lg:m-10 bg-white rounded-md"> <div class="mx-4 md:mx-8 lg:mx-16 px-4 sm:px-6 lg:px-8 py-12 relative" style="z-index:100;"> <div> <div class="uppercase"> <nav class="hidden sm:flex" aria-label="Breadcrumb"> <ol role="list" class="flex items-center space-x-4"> <li> <div class="flex"> <a href="/" title="Home" class="text-sm font-medium text-gold">Home</a> </div> </li> <li> <div class="flex items-center"> <svg class="flex-shrink-0 h-5 w-5 text-gold" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" /> </svg> <a href="/events" title="Events" aria-current="page" class="ml-4 text-sm font-medium text-gold">Events</a> </div> </li> </ol> </nav> </div> <div class="mt-2 md:flex md:items-center md:justify-between"> <div class="flex-1 min-w-0"> <h2 class="text-3xl font-bold leading-7 text-gray-900 sm:text-4xl sm:truncate uppercase">Events</h2> </div> <div class="mt-4 flex-shrink-0 flex lg:mt-0 lg:ml-4"></div> </div> </div> <div class="lg:flex items-end justify-between"> <div class="max-w-2xl mt-5"> <p>There's plenty to see, do and enjoy at heritage railway events around the UK. Many railways also offer <a href="/experiences" title="Experiences">experience days</a> such as driving a train or dining experiences.</p> </div> <div class="mt-4 flex-shrink-0 flex lg:mt-0 lg:ml-4"> <span class="relative z-0 md:inline-flex shadow-sm rounded-md mx-auto lg:mx-inherit"> <div> <div x-data="{ open: false }" class="mb-1 md:mb-0 relative"> <button @click="open = !open" type="button" class="filter-width relative inline-flex items-center px-6 py-4 pr-10 rounded-md md:rounded-r-none border border-gray-300 bg-white text-sm font-medium text-gray-700 hover:bg-gray-50 focus:z-10 focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500" aria-haspopup="listbox" aria-expanded="true" aria-labelledby="listbox-label"> <span class="block truncate"> Filter By Event Type </span> <span class="absolute inset-y-0 right-0 flex items-center pr-2 pointer-events-none"> <svg class="h-5 w-5 text-gray-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z" clip-rule="evenodd" /> </svg> </span> </button> <ul x-show="open" x-transition:enter="transition ease-out duration-100 transform" x-transition:enter-start="opacity-0 scale-95" x-transition:enter-end="opacity-100 scale-100" x-transition:leave="transition ease-in duration-75 transform" x-transition:leave-start="opacity-100 scale-100" x-transition:leave-end="opacity-0 scale-95" class="absolute z-10 mt-1 w-full bg-white shadow-lg max-h-60 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm" tabindex="-1" role="listbox" aria-labelledby="listbox-label" aria-activedescendant="listbox-option-3"> <li onclick="window.location='/events?';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">All</span> </li> <li onclick="window.location='/events?type=steam-gala';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Steam Gala.</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=diesel-gala';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Diesel Gala</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=children-s-event';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Children's Event</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=model-railways-event';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Model Railways Event</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=days-out-with-thomas';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Days out with Thomas</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=demonstration-goods-workings';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Demonstration Goods Workings</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=vintage-vehicles';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Vintage Vehicles</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=beer-ale-event';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Beer / Ale Event</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=miniature-engine-rally';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Miniature Engine Rally</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=1940s-event';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">1940s Event</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=halloween-event';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Halloween Event</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=illuminated-train';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Illuminated Train</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?type=christmas-event';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Christmas Event</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> </ul> </div> </div> <div> <div x-data="{ open: false }" class="mb-1 md:mb-0 relative"> <button @click="open = !open" type="button" class="filter-month -ml-px relative inline-flex items-center px-6 py-4 pr-10 border rounded md:rounded-none border-gray-300 bg-white text-sm font-medium text-gray-700 hover:bg-gray-50 focus:z-10 focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500 text-center" aria-haspopup="listbox" aria-expanded="true" aria-labelledby="listbox-label"> <span class="block truncate"> Filter by Month </span> <span class="absolute inset-y-0 right-0 flex items-center pr-2 pointer-events-none"> <svg class="h-5 w-5 text-gray-400 xmlns=" http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" d="M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 012.25-2.25h13.5A2.25 2.25 0 0121 7.5v11.25m-18 0A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75m-18 0v-7.5A2.25 2.25 0 015.25 9h13.5A2.25 2.25 0 0121 11.25v7.5m-9-6h.008v.008H12v-.008zM12 15h.008v.008H12V15zm0 2.25h.008v.008H12v-.008zM9.75 15h.008v.008H9.75V15zm0 2.25h.008v.008H9.75v-.008zM7.5 15h.008v.008H7.5V15zm0 2.25h.008v.008H7.5v-.008zm6.75-4.5h.008v.008h-.008v-.008zm0 2.25h.008v.008h-.008V15zm0 2.25h.008v.008h-.008v-.008zm2.25-4.5h.008v.008H16.5v-.008zm0 2.25h.008v.008H16.5V15z" /> </svg> </span> </button> <ul x-show="open" x-transition:enter="transition ease-out duration-100 transform" x-transition:enter-start="opacity-0 scale-95" x-transition:enter-end="opacity-100 scale-100" x-transition:leave="transition ease-in duration-75 transform" x-transition:leave-start="opacity-100 scale-100" x-transition:leave-end="opacity-0 scale-95" class="absolute z-10 mt-1 w-full bg-white shadow-lg max-h-60 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm" tabindex="-1" role="listbox" aria-labelledby="listbox-label" aria-activedescendant="listbox-option-3"> <li onclick="window.location='/events?';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">All Dates</span> </li> <li onclick="window.location='/events?date=2025-03';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Mar 2025</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2025-04';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Apr 2025</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2025-05';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">May 2025</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2025-06';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Jun 2025</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2025-07';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Jul 2025</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2025-08';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Aug 2025</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2025-09';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Sep 2025</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2025-10';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Oct 2025</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2025-11';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Nov 2025</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2025-12';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Dec 2025</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-01';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Jan 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-02';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Feb 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-03';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Mar 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-04';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Apr 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-05';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">May 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-06';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Jun 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-07';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Jul 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-08';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Aug 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-09';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Sep 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-10';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Oct 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-11';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Nov 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> <li onclick="window.location='/events?date=2026-12';" class="text-gray-700 cursor-pointer hover:bg-gray-100 hover:text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9" id="listbox-option-0" role="option"> <span class="font-normal block truncate">Dec 2026</span> <span class="hidden text-indigo-600 absolute inset-y-0 right-0 flex items-center pr-4"> <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </li> </ul> </div> </div> <form class="relative" method="POST" action="/api/location-by-place"> <input type="hidden" name="source" value="/events" /> <input name="place" onfocus="this.value=''" type="text" placeholder="Enter Postcode" value="" class="postcode-width -ml-px relative inline-flex items-center px-8 py-4 rounded-md md:rounded-l-none border border-gray-300 bg-white text-sm font-medium text-gray-700 hover:bg-gray-50 focus:z-10 focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500 text-center" /> <div class="absolute left-0 top-0 -ml-2 pad-14"> <svg title="Use my Location" onclick="getLocation()" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M15 10.5a3 3 0 11-6 0 3 3 0 016 0z" /> <path stroke-linecap="round" stroke-linejoin="round" d="M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1115 0z" /> </svg> </div> <div class="cursor-pointer text-gray-500 hover:text-indigo-500 absolute right-0 top-0 text-right -mr-2 pad-14"> <svg title="Use my Location" onclick="getLocation()" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 feather feather-crosshair"> <circle cx="12" cy="12" r="10"></circle> <line x1="22" y1="12" x2="18" y2="12"></line> <line x1="6" y1="12" x2="2" y2="12"></line> <line x1="12" y1="6" x2="12" y2="2"></line> <line x1="12" y1="22" x2="12" y2="18"></line> </svg> </div> <button class="hidden" type="submit">Submit</button> </form> </span> </div> </div> </div> <div class="md:flex"> <div class="w-full md:w-3/5 bg flex"> <div class="w-full"> <div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">28th March 2025 - 30th March 2025</div> <div> <img alt="Steam Gala" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/261/events/1990"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Steam Gala </h2> </div> <div class="text-gray-500 font-bold"> Swanage Railway, Swanage, Dorset, </div> </div> </div> <button onclick="openMap1990()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Steam Gala</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/1990" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/SwanRailway"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/swanagerailway"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/swanagerailwayofficial"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 28th March 2025 - 30th March 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Steam Gala.</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Station House, Railway Station Approach, Swanage, Dorset, BH19 1HB, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">29th March 2025 - 30th March 2025</div> <div> <img alt="Industrial Steam Gala" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/230/events/272"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Industrial Steam Gala </h2> </div> <div class="text-gray-500 font-bold"> Ribble Steam Railway & Museum, Preston, Lancashire, </div> </div> </div> <button onclick="openMap272()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Steam Gala at RSR</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/272" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/ribblesteam"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/Ribblesteam"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/ribblesteam"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 29th March 2025 - 30th March 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Steam Gala.</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Chain Caul Road, Riversway Docklands, Preston, Lancashire, PR2 2PD, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">29th March 2025 - 30th March 2025</div> <div> <img alt="Mum Goes Free" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/82/events/1590"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Mum Goes Free </h2> </div> <div class="text-gray-500 font-bold"> Bure Valley Railway, Aylsham, Norfolk, </div> </div> </div> <button onclick="openMap1590()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">A Mum travels FREE with a full fare-paying adult. One free Mum per booking Pre-booking is essential</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/1590" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/BureValley"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/burevalleyrailway"><i class="fa-brands fa-facebook-f"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 29th March 2025 - 30th March 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Aylsham Station, Norwich Road, Aylsham, Norfolk, NR11 6BW, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">30th March 2025</div> <div> <img alt="Cream Tea Specials" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/214/events/1813"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Cream Tea Specials </h2> </div> <div class="text-gray-500 font-bold"> Northampton & Lamport Railway, Chapel Brampton, NORTHAMPTON, </div> </div> </div> <button onclick="openMap1813()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Looking for a lazy Sunday afternoon treat? Why not travel in style with the Northampton & Lamport Railway’s Cream Tea Special</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/1813" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/NLRailway"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/NLRailway"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/Nlrailway"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Date </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 30th March 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Pitsford & Brampton Station, Pitsford Road, Chapel Brampton, NORTHAMPTON, NN6 8BA, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">30th March 2025</div> <div> <img alt="Mother's Day Afternoon Tea" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/208/events/2471"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Mother's Day Afternoon Tea </h2> </div> <div class="text-gray-500 font-bold"> North Dorset Railway, Blandford Forum, Dorset, </div> </div> </div> <button onclick="openMap2471()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Mother's Day Afternoon Tea on Sunday 30th March 2025</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/2471" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://facebook.com/ShillingstoneStation"><i class="fa-brands fa-facebook-f"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Date </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 30th March 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Shillingstone Station, Station Road, Shillingstone, Blandford Forum, Dorset, DT11 0SA, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">4th April 2025 - 6th April 2025</div> <div> <img alt="Diesel Gala - 3-day weekend of vintage diesel traction!" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/91/events/1423"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Diesel Gala - 3-day weekend of vintage diesel traction! </h2> </div> <div class="text-gray-500 font-bold"> Chinnor & Princes Risborough Railway, Chinnor, Oxfordshire, </div> </div> </div> <button onclick="openMap1423()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">We've listened to the many diesel enthusiasts who said our previous three-day 'Big Diesel Thrashes' were much missed… and so we've set the date for a reintroduction in 2025! The event will take place over three days, from Friday 4 April to Sunday 6 April.</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/1423" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/chinnorrailway"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/chinnorrailway"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/chinnorrailway"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 4th April 2025 - 6th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Diesel Gala</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Station Road, Chinnor, Oxfordshire, OX39 4ER, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">5th April 2025 - 6th April 2025</div> <div> <img alt="Local Residents Weekend" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/51/events/753"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Local Residents Weekend </h2> </div> <div class="text-gray-500 font-bold"> Avon Valley Railway, Bitton, Bristol, </div> </div> </div> <button onclick="openMap753()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Join us for a trip aboard one of our steam-hauled trains during this Local Resident’s Weekend!</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/753" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/AVRbitton"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/AVRbitton"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/avrbitton"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 5th April 2025 - 6th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Bitton Station, Bath Road, Bitton, Bristol, BS30 6HD, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">5th April 2025 - 21st April 2025</div> <div> <img alt="Easter Eggspress" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/82/events/1436"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Easter Eggspress </h2> </div> <div class="text-gray-500 font-bold"> Bure Valley Railway, Aylsham, Norfolk, </div> </div> </div> <button onclick="openMap1436()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Free Easter Egg for every child on completion of Easter Trail</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/1436" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/BureValley"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/burevalleyrailway"><i class="fa-brands fa-facebook-f"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 5th April 2025 - 21st April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Children's Event</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Aylsham Station, Norwich Road, Aylsham, Norfolk, NR11 6BW, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">5th April 2025 - 6th April 2025</div> <div> <img alt="WACKADOO! Bluey is visiting Swanage Railway!" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/261/events/2114"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> WACKADOO! Bluey is visiting Swanage Railway! </h2> </div> <div class="text-gray-500 font-bold"> Swanage Railway, Swanage, Dorset, </div> </div> </div> <button onclick="openMap2114()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">WACKADOO! Bluey is visiting Swanage Railway!</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/2114" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/SwanRailway"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/swanagerailway"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/swanagerailwayofficial"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 5th April 2025 - 6th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Children's Event</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Station House, Railway Station Approach, Swanage, Dorset, BH19 1HB, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">5th April 2025</div> <div> <img alt="Open Day and Model Railway Show" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/208/events/2472"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Open Day and Model Railway Show </h2> </div> <div class="text-gray-500 font-bold"> North Dorset Railway, Blandford Forum, Dorset, </div> </div> </div> <button onclick="openMap2472()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Open Day and Model Railway Show 5th April 2025</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/2472" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://facebook.com/ShillingstoneStation"><i class="fa-brands fa-facebook-f"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Date </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 5th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Model Railways Event</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Shillingstone Station, Station Road, Shillingstone, Blandford Forum, Dorset, DT11 0SA, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">12th April 2025 - 13th April 2025</div> <div> <img alt="Farmyard Friends" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/51/events/1299"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Farmyard Friends </h2> </div> <div class="text-gray-500 font-bold"> Avon Valley Railway, Bitton, Bristol, </div> </div> </div> <button onclick="openMap1299()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">If you’ve visited us at Christmas you’ll have met our festive Donkeys. Meet them again as they bring some seasonal friends with them to help celebrate Spring.</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/1299" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/AVRbitton"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/AVRbitton"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/avrbitton"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 12th April 2025 - 13th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Children's Event</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Bitton Station, Bath Road, Bitton, Bristol, BS30 6HD, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">12th April 2025</div> <div> <img alt="Fairytale Express" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/213/events/1512"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Fairytale Express </h2> </div> <div class="text-gray-500 font-bold"> Stephenson Steam Railway, North Shields, Tyne & Wear, </div> </div> </div> <button onclick="openMap1512()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Let It Snow Productions presents the Fairytale Express</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/1512" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/north_steam"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/northtynesidesteamrailway"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/northtynesiderailway"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Date </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 12th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Children's Event</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Stephenson Steam Railway, Middle Engine Lane, North Shields, Tyne & Wear, NE29 8DX, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">12th April 2025</div> <div> <img alt="New Member's Day" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/201/events/2319"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> New Member's Day </h2> </div> <div class="text-gray-500 font-bold"> Apedale Valley Light Railway, Newcastle under Lyme, Staffordshire, </div> </div> </div> <button onclick="openMap2319()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">A day to explore volunteering with us</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/2319" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/ApedaleRailway"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/Apedale-Valley-Light-Railway-149593798417664"><i class="fa-brands fa-facebook-f"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Date </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 12th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Apedale Country Park, Blackbank Road, Knutton, Newcastle under Lyme, Staffordshire, ST5 6AX, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">18th April 2025 - 21st April 2025</div> <div> <img alt="Easter Egg Event" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/230/events/93"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Easter Egg Event </h2> </div> <div class="text-gray-500 font-bold"> Ribble Steam Railway & Museum, Preston, Lancashire, </div> </div> </div> <button onclick="openMap93()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Easter Steam Train Rides</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/93" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/ribblesteam"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/Ribblesteam"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/ribblesteam"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 18th April 2025 - 21st April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Children's Event</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Chain Caul Road, Riversway Docklands, Preston, Lancashire, PR2 2PD, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">18th April 2025 - 20th April 2025</div> <div> <img alt="Day Out With Thomas" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/81/events/1038"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Day Out With Thomas </h2> </div> <div class="text-gray-500 font-bold"> Buckinghamshire Railway Centre, Quainton, Aylesbury, Buckinghamshire, </div> </div> </div> <button onclick="openMap1038()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">All Aboard for a day of family FUN with Thomas & Friends! Meet Thomas and The Fat Controller, take a train ride and enjoy so much more!</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/1038" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/BucksRailCentre"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/BucksRailCentre"><i class="fa-brands fa-facebook-f"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 18th April 2025 - 20th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Days out with Thomas</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Quainton Road Station, Station Road, Quainton, Aylesbury, Buckinghamshire, HP22 4BY, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">18th April 2025 - 21st April 2025</div> <div> <img alt="Steam into Spring" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/211/events/2397"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Steam into Spring </h2> </div> <div class="text-gray-500 font-bold"> North Norfolk Railway, Sheringham, Norfolk, </div> </div> </div> <button onclick="openMap2397()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Don’t miss the chance see and travel on three contrasting historic trains this Easter Bank Holiday Weekend.</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/2397" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/nnrailway"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/NorthNorfolkRailwayPLC"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/northnorfolkrailway"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 18th April 2025 - 21st April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Steam Gala.</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Sheringham Station, Station Approach, Sheringham, Norfolk, NR26 8RA, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">19th April 2025</div> <div> <img alt="Easter Open Day" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/184/events/663"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Easter Open Day </h2> </div> <div class="text-gray-500 font-bold"> Llanelli & Mynydd Mawr Railway, Llanelli, Carmarthenshire, </div> </div> </div> <button onclick="openMap663()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold"></p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/663" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/LlanelliRailway"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/llanellirailway"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/llanellirailway"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Date </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 19th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Site of the former Cynheidre Colliery, Cynheidre, Llanelli, Carmarthenshire, SA15 5DQ, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">19th April 2025 - 20th April 2025</div> <div> <img alt="Yorkshire Afternoon Tea" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/13/events/1620"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Yorkshire Afternoon Tea </h2> </div> <div class="text-gray-500 font-bold"> Keighley & Worth Valley Railway, Keighley, West Yorkshire, </div> </div> </div> <button onclick="openMap1620()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Delightful Treats in Plush Surroundings.</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/1620" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/WorthValley"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/worthvalleyrailway"><i class="fa-brands fa-facebook-f"></i></a> <a href="https://instagram.com/worthvalley"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 19th April 2025 - 20th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> The Railway Station, Haworth, Keighley, West Yorkshire, BD22 8NJ, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">19th April 2025 - 21st April 2025</div> <div> <img alt="Easter Egg Hunt" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/201/events/1976"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Easter Egg Hunt </h2> </div> <div class="text-gray-500 font-bold"> Apedale Valley Light Railway, Newcastle under Lyme, Staffordshire, </div> </div> </div> <button onclick="openMap1976()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">A fun day out for the family</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/1976" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://twitter.com/ApedaleRailway"><i class="fa-brands fa-twitter"></i></a> <a href="https://facebook.com/Apedale-Valley-Light-Railway-149593798417664"><i class="fa-brands fa-facebook-f"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 19th April 2025 - 21st April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Children's Event</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Apedale Country Park, Blackbank Road, Knutton, Newcastle under Lyme, Staffordshire, ST5 6AX, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div><div class="m-4 md:m-8 lg:m-16 "> <div class=" bg-white overflow-hidden rounded-lg shadow-lg"> <div class="bg-gold px-5 py-2 text-center font-bold text-white text-lg">19th April 2025 - 20th April 2025</div> <div> <img alt="Easter Express 2025" class="rounded-sm w-full" src="https://www.heritage-ops.org.uk/uploads/public/raildays/orgs/354/events/2358"> </div> <div class="lg:flex justify-between items-center px-5 md:px-10 pt-5 md:pt-10 pb-5"> <div class="flex items-center"> <div> <div> <h2 class="text-2xl font-extrabold tracking-tight text-gray-900 text-gold"> Easter Express 2025 </h2> </div> <div class="text-gray-500 font-bold"> Barnards Miniature Railway, West Horndon, Essex, </div> </div> </div> <button onclick="openMap2358()" type="button" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 map-button">View on Map</button> </div> <div class="px-5 md:px-10 py-5"> <p class="mb-4 font-bold">Join us on the Barnards Miniature Railway Easter Express on Sat 19th and Sun 20th April 2025 for a 20 minute return journey as we board the only Easter egg hunt that you do whilst riding on a miniature railway. This is a PRE-BOOK event and further details will appear here nearer the time.</p> <div class="md:flex justify-between mt-6"> <div> <a href="/events/2358" class="inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 railway-button">View More Information</a> </div> <div class="social-media"> <a href="https://facebook.com/BarnardsMiniatureRailway"><i class="fa-brands fa-facebook-f"></i></a> </div> </div> </div> <div class="px-10 pt-5 pb-5 read-more"> <dl class="space-y-8 sm:divide-y sm:divide-gray-200 sm:space-y-0"> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Dates </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 19th April 2025 - 20th April 2025 </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Event Type(s) </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> <div>Children's Event</div> </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Location </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> Barnards Farm, Brentwood Road, West Horndon, Essex, CM13 3FY, GB </dd> </div> <div class="sm:flex sm:py-5"> <dt class="text-sm font-medium text-gray-500 sm:w-40 sm:flex-shrink-0 lg:w-48"> Distance </dt> <dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:ml-6 sm:col-span-2"> 0 away </dd> </div> </dl> </div> </div> </div> </div> </div> <div class="w-full mt-5 md:mt-0 md:w-2/5"> <div id="map" class="w-full h-full relative"> <div id="map-id" class="w-full h-full relative"></div> </div> <script> // Invoke Map var mbAttr = 'Map data &copy; <a href=" https://www.openstreetmap.org/"> OpenStreetMap < /a> contributors, ' + '<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery � <a href="https://www.mapbox.com/">Mapbox</a>'; var mbUrl = 'https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoiYWxhbi1qb2huc29uLWhvcHMiLCJhIjoiY2p0aXE0MmdsMmp5cTQ0cDh6Mm4xNXZwYiJ9.MSPHlyfGV5d7PT_5Imz1Qg'; var streets = L.tileLayer(mbUrl, { id: 'alan-johnson-hops/ckr0iay7j0mqw17le5dimgqmm', tileSize: 512, zoomOffset: -1, attribution: mbAttr }); var outdoor = L.tileLayer(mbUrl, { id: 'alan-johnson-hops/ckr0m6rosbv1918mkm3lk9990', tileSize: 512, zoomOffset: -1, attribution: mbAttr }); var satellite = L.tileLayer(mbUrl, { id: 'alan-johnson-hops/ckr0mizdu6w4s17mcg1xlxbai', tileSize: 512, zoomOffset: -1, attribution: mbAttr }); var map = L.map('map-id', { layers: [streets], zoomSnap: 0.25, zoomDelta: 0.5 }); map.fitBounds([[50.609855138110774,-1.9602119922637942],[53.75878427221837,-2.753781080245972],[52.79116897240687,1.2551268080478506],[52.293677428272005,-0.923827886581421],[50.90699752458565,-2.2538495063781743],[51.697767539347865,-0.9061950445175172],[51.430777751162694,-2.47642457485199],[52.79116897240687,1.2551268080478506],[50.609855138110774,-1.9602119922637942],[50.90699752458565,-2.2538495063781743],[51.430777751162694,-2.47642457485199],[55.016971152811294,-1.496977597671503],[53.031989617632384,-2.26611819873142],[53.75878427221837,-2.753781080245972],[51.864824078005896,-0.9272495808181703],[52.941490733724045,1.20850237737534],[51.743898021733166,-4.183967113494874],[53.81485703342621,-1.9523853063583376],[53.031989617632384,-2.26611819873142],[51.56487493990577,0.3569749294729263]], { padding: [50, 50] }); var baseLayers = { 'Map View': streets, 'Outdoor View': outdoor, 'Satellite View': satellite }; L.control.layers(baseLayers).addTo(map); var markers = []; const svg_444 = L.divIcon({ html: `<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.5" clip-rule="evenodd" viewBox="0 0 169 236"><ellipse cx="462.608" cy="401.317" fill="#fff" stroke="#fff" stroke-width="20.61px" rx="104.083" ry="100.976" transform="matrix(0.322174,0,0,0.332517,-64.9724,-55.7703)"/><path fill="#444" fill-rule="nonzero" stroke="#444" stroke-linecap="butt" stroke-miterlimit="1.41421" stroke-width="831.2px" d="M3855 12789c-555-44-1043-176-1530-414C868 11663-45 10152 3 8535c19-605 152-1155 406-1680 109-225 183-353 331-575 65-96 856-1369 1760-2827C3403 1994 4146 800 4150 800s747 1194 1650 2652c904 1459 1695 2732 1760 2828 148 222 222 350 331 575 421 869 520 1869 279 2821-244 958-822 1795-1640 2371-696 491-1551 759-2404 752-94-1-216-5-271-10zm635-1764c440-80 813-271 1120-575 769-761 825-1980 130-2812-335-402-817-663-1344-728-114-14-378-14-492 0-853 105-1550 715-1764 1544-141 545-52 1136 243 1613 330 531 862 876 1497 968 130 19 481 13 610-10z" transform="matrix(0.0184228,0,0,-0.0183158,7.61227,242.061)"/></svg>`, className: "", iconSize: [20, 30], iconAnchor: [12, 40] }); const svg_0000ff = L.divIcon({ html: `<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.5" clip-rule="evenodd" viewBox="0 0 169 236"><ellipse cx="462.608" cy="401.317" fill="#fff" stroke="#fff" stroke-width="20.61px" rx="104.083" ry="100.976" transform="matrix(0.322174,0,0,0.332517,-64.9724,-55.7703)"/><path fill="#0000ff" fill-rule="nonzero" stroke="#0000ff" stroke-linecap="butt" stroke-miterlimit="1.41421" stroke-width="831.2px" d="M3855 12789c-555-44-1043-176-1530-414C868 11663-45 10152 3 8535c19-605 152-1155 406-1680 109-225 183-353 331-575 65-96 856-1369 1760-2827C3403 1994 4146 800 4150 800s747 1194 1650 2652c904 1459 1695 2732 1760 2828 148 222 222 350 331 575 421 869 520 1869 279 2821-244 958-822 1795-1640 2371-696 491-1551 759-2404 752-94-1-216-5-271-10zm635-1764c440-80 813-271 1120-575 769-761 825-1980 130-2812-335-402-817-663-1344-728-114-14-378-14-492 0-853 105-1550 715-1764 1544-141 545-52 1136 243 1613 330 531 862 876 1497 968 130 19 481 13 610-10z" transform="matrix(0.0184228,0,0,-0.0183158,7.61227,242.061)"/></svg>`, className: "", iconSize: [20, 30], iconAnchor: [12, 40] }); const svg_e91e63 = L.divIcon({ html: `<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.5" clip-rule="evenodd" viewBox="0 0 169 236"><ellipse cx="462.608" cy="401.317" fill="#fff" stroke="#fff" stroke-width="20.61px" rx="104.083" ry="100.976" transform="matrix(0.322174,0,0,0.332517,-64.9724,-55.7703)"/><path fill="#e91e63" fill-rule="nonzero" stroke="#e91e63" stroke-linecap="butt" stroke-miterlimit="1.41421" stroke-width="831.2px" d="M3855 12789c-555-44-1043-176-1530-414C868 11663-45 10152 3 8535c19-605 152-1155 406-1680 109-225 183-353 331-575 65-96 856-1369 1760-2827C3403 1994 4146 800 4150 800s747 1194 1650 2652c904 1459 1695 2732 1760 2828 148 222 222 350 331 575 421 869 520 1869 279 2821-244 958-822 1795-1640 2371-696 491-1551 759-2404 752-94-1-216-5-271-10zm635-1764c440-80 813-271 1120-575 769-761 825-1980 130-2812-335-402-817-663-1344-728-114-14-378-14-492 0-853 105-1550 715-1764 1544-141 545-52 1136 243 1613 330 531 862 876 1497 968 130 19 481 13 610-10z" transform="matrix(0.0184228,0,0,-0.0183158,7.61227,242.061)"/></svg>`, className: "", iconSize: [20, 30], iconAnchor: [12, 40] }); const svg_4a148c = L.divIcon({ html: `<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.5" clip-rule="evenodd" viewBox="0 0 169 236"><ellipse cx="462.608" cy="401.317" fill="#fff" stroke="#fff" stroke-width="20.61px" rx="104.083" ry="100.976" transform="matrix(0.322174,0,0,0.332517,-64.9724,-55.7703)"/><path fill="#4a148c" fill-rule="nonzero" stroke="#4a148c" stroke-linecap="butt" stroke-miterlimit="1.41421" stroke-width="831.2px" d="M3855 12789c-555-44-1043-176-1530-414C868 11663-45 10152 3 8535c19-605 152-1155 406-1680 109-225 183-353 331-575 65-96 856-1369 1760-2827C3403 1994 4146 800 4150 800s747 1194 1650 2652c904 1459 1695 2732 1760 2828 148 222 222 350 331 575 421 869 520 1869 279 2821-244 958-822 1795-1640 2371-696 491-1551 759-2404 752-94-1-216-5-271-10zm635-1764c440-80 813-271 1120-575 769-761 825-1980 130-2812-335-402-817-663-1344-728-114-14-378-14-492 0-853 105-1550 715-1764 1544-141 545-52 1136 243 1613 330 531 862 876 1497 968 130 19 481 13 610-10z" transform="matrix(0.0184228,0,0,-0.0183158,7.61227,242.061)"/></svg>`, className: "", iconSize: [20, 30], iconAnchor: [12, 40] }); const svg_fa8128 = L.divIcon({ html: `<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.5" clip-rule="evenodd" viewBox="0 0 169 236"><ellipse cx="462.608" cy="401.317" fill="#fff" stroke="#fff" stroke-width="20.61px" rx="104.083" ry="100.976" transform="matrix(0.322174,0,0,0.332517,-64.9724,-55.7703)"/><path fill="#fa8128" fill-rule="nonzero" stroke="#fa8128" stroke-linecap="butt" stroke-miterlimit="1.41421" stroke-width="831.2px" d="M3855 12789c-555-44-1043-176-1530-414C868 11663-45 10152 3 8535c19-605 152-1155 406-1680 109-225 183-353 331-575 65-96 856-1369 1760-2827C3403 1994 4146 800 4150 800s747 1194 1650 2652c904 1459 1695 2732 1760 2828 148 222 222 350 331 575 421 869 520 1869 279 2821-244 958-822 1795-1640 2371-696 491-1551 759-2404 752-94-1-216-5-271-10zm635-1764c440-80 813-271 1120-575 769-761 825-1980 130-2812-335-402-817-663-1344-728-114-14-378-14-492 0-853 105-1550 715-1764 1544-141 545-52 1136 243 1613 330 531 862 876 1497 968 130 19 481 13 610-10z" transform="matrix(0.0184228,0,0,-0.0183158,7.61227,242.061)"/></svg>`, className: "", iconSize: [20, 30], iconAnchor: [12, 40] }); const svg_0cac13 = L.divIcon({ html: `<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.5" clip-rule="evenodd" viewBox="0 0 169 236"><ellipse cx="462.608" cy="401.317" fill="#fff" stroke="#fff" stroke-width="20.61px" rx="104.083" ry="100.976" transform="matrix(0.322174,0,0,0.332517,-64.9724,-55.7703)"/><path fill="#0cac13" fill-rule="nonzero" stroke="#0cac13" stroke-linecap="butt" stroke-miterlimit="1.41421" stroke-width="831.2px" d="M3855 12789c-555-44-1043-176-1530-414C868 11663-45 10152 3 8535c19-605 152-1155 406-1680 109-225 183-353 331-575 65-96 856-1369 1760-2827C3403 1994 4146 800 4150 800s747 1194 1650 2652c904 1459 1695 2732 1760 2828 148 222 222 350 331 575 421 869 520 1869 279 2821-244 958-822 1795-1640 2371-696 491-1551 759-2404 752-94-1-216-5-271-10zm635-1764c440-80 813-271 1120-575 769-761 825-1980 130-2812-335-402-817-663-1344-728-114-14-378-14-492 0-853 105-1550 715-1764 1544-141 545-52 1136 243 1613 330 531 862 876 1497 968 130 19 481 13 610-10z" transform="matrix(0.0184228,0,0,-0.0183158,7.61227,242.061)"/></svg>`, className: "", iconSize: [20, 30], iconAnchor: [12, 40] }); const svg_ffff00 = L.divIcon({ html: `<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.5" clip-rule="evenodd" viewBox="0 0 169 236"><ellipse cx="462.608" cy="401.317" fill="#fff" stroke="#fff" stroke-width="20.61px" rx="104.083" ry="100.976" transform="matrix(0.322174,0,0,0.332517,-64.9724,-55.7703)"/><path fill="#ffff00" fill-rule="nonzero" stroke="#ffff00" stroke-linecap="butt" stroke-miterlimit="1.41421" stroke-width="831.2px" d="M3855 12789c-555-44-1043-176-1530-414C868 11663-45 10152 3 8535c19-605 152-1155 406-1680 109-225 183-353 331-575 65-96 856-1369 1760-2827C3403 1994 4146 800 4150 800s747 1194 1650 2652c904 1459 1695 2732 1760 2828 148 222 222 350 331 575 421 869 520 1869 279 2821-244 958-822 1795-1640 2371-696 491-1551 759-2404 752-94-1-216-5-271-10zm635-1764c440-80 813-271 1120-575 769-761 825-1980 130-2812-335-402-817-663-1344-728-114-14-378-14-492 0-853 105-1550 715-1764 1544-141 545-52 1136 243 1613 330 531 862 876 1497 968 130 19 481 13 610-10z" transform="matrix(0.0184228,0,0,-0.0183158,7.61227,242.061)"/></svg>`, className: "", iconSize: [20, 30], iconAnchor: [12, 40] }); const svg_3f51b5 = L.divIcon({ html: `<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.5" clip-rule="evenodd" viewBox="0 0 169 236"><ellipse cx="462.608" cy="401.317" fill="#fff" stroke="#fff" stroke-width="20.61px" rx="104.083" ry="100.976" transform="matrix(0.322174,0,0,0.332517,-64.9724,-55.7703)"/><path fill="#3f51b5" fill-rule="nonzero" stroke="#3f51b5" stroke-linecap="butt" stroke-miterlimit="1.41421" stroke-width="831.2px" d="M3855 12789c-555-44-1043-176-1530-414C868 11663-45 10152 3 8535c19-605 152-1155 406-1680 109-225 183-353 331-575 65-96 856-1369 1760-2827C3403 1994 4146 800 4150 800s747 1194 1650 2652c904 1459 1695 2732 1760 2828 148 222 222 350 331 575 421 869 520 1869 279 2821-244 958-822 1795-1640 2371-696 491-1551 759-2404 752-94-1-216-5-271-10zm635-1764c440-80 813-271 1120-575 769-761 825-1980 130-2812-335-402-817-663-1344-728-114-14-378-14-492 0-853 105-1550 715-1764 1544-141 545-52 1136 243 1613 330 531 862 876 1497 968 130 19 481 13 610-10z" transform="matrix(0.0184228,0,0,-0.0183158,7.61227,242.061)"/></svg>`, className: "", iconSize: [20, 30], iconAnchor: [12, 40] }); var marker_1990_options = { 'icon': svg_e91e63 }; var markers_1990 = L.marker( [50.609855138111, -1.9602119922638], marker_1990_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/swanage-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/swan-261-17.png\"/><div class=\"map-pop-text\">Steam Gala</div><div class=\"\">Swanage Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap1990() { markers_1990.openPopup(); } var marker_272_options = { 'icon': svg_e91e63 }; var markers_272 = L.marker( [53.758784272218, -2.753781080246], marker_272_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/ribble-steam-railway-museum#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/rsr-230-38.png\"/><div class=\"map-pop-text\">Industrial Steam Gala</div><div class=\"\">Ribble Steam Railway & Museum</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap272() { markers_272.openPopup(); } var marker_1590_options = { 'icon': svg_fa8128 }; var markers_1590 = L.marker( [52.791168972407, 1.2551268080479], marker_1590_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/bure-valley-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/bvr-82-20.png\"/><div class=\"map-pop-text\">Mum Goes Free</div><div class=\"\">Bure Valley Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap1590() { markers_1590.openPopup(); } var marker_1813_options = { 'icon': svg_e91e63 }; var markers_1813 = L.marker( [52.293677428272, -0.92382788658142], marker_1813_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/northampton-lamport-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/nlr-214-33.png\"/><div class=\"map-pop-text\">Cream Tea Specials</div><div class=\"\">Northampton & Lamport Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap1813() { markers_1813.openPopup(); } var marker_2471_options = { 'icon': svg_3f51b5 }; var markers_2471 = L.marker( [50.906997524586, -2.2538495063782], marker_2471_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/north-dorset-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/ndr-208-05.png\"/><div class=\"map-pop-text\">Mother\'s Day Afternoon Tea</div><div class=\"\">North Dorset Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap2471() { markers_2471.openPopup(); } var marker_1423_options = { 'icon': svg_e91e63 }; var markers_1423 = L.marker( [51.697767539348, -0.90619504451752], marker_1423_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/chinnor-princes-risborough-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/cprr-91-55.png\"/><div class=\"map-pop-text\">Diesel Gala - 3-day weekend of vintage diesel traction!</div><div class=\"\">Chinnor & Princes Risborough Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap1423() { markers_1423.openPopup(); } var marker_753_options = { 'icon': svg_e91e63 }; var markers_753 = L.marker( [51.430777751163, -2.476424574852], marker_753_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/avon-valley-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/avr-51-09.png\"/><div class=\"map-pop-text\">Local Residents Weekend</div><div class=\"\">Avon Valley Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap753() { markers_753.openPopup(); } var marker_1436_options = { 'icon': svg_fa8128 }; var markers_1436 = L.marker( [52.791168972407, 1.2551268080479], marker_1436_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/bure-valley-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/bvr-82-20.png\"/><div class=\"map-pop-text\">Easter Eggspress</div><div class=\"\">Bure Valley Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap1436() { markers_1436.openPopup(); } var marker_2114_options = { 'icon': svg_e91e63 }; var markers_2114 = L.marker( [50.609855138111, -1.9602119922638], marker_2114_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/swanage-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/swan-261-17.png\"/><div class=\"map-pop-text\">WACKADOO! Bluey is visiting Swanage Railway!</div><div class=\"\">Swanage Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap2114() { markers_2114.openPopup(); } var marker_2472_options = { 'icon': svg_3f51b5 }; var markers_2472 = L.marker( [50.906997524586, -2.2538495063782], marker_2472_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/north-dorset-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/ndr-208-05.png\"/><div class=\"map-pop-text\">Open Day and Model Railway Show</div><div class=\"\">North Dorset Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap2472() { markers_2472.openPopup(); } var marker_1299_options = { 'icon': svg_e91e63 }; var markers_1299 = L.marker( [51.430777751163, -2.476424574852], marker_1299_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/avon-valley-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/avr-51-09.png\"/><div class=\"map-pop-text\">Farmyard Friends</div><div class=\"\">Avon Valley Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap1299() { markers_1299.openPopup(); } var marker_1512_options = { 'icon': svg_e91e63 }; var markers_1512 = L.marker( [55.016971152811, -1.4969775976715], marker_1512_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/stephenson-steam-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/ntsr-213-37.png\"/><div class=\"map-pop-text\">Fairytale Express</div><div class=\"\">Stephenson Steam Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap1512() { markers_1512.openPopup(); } var marker_2319_options = { 'icon': svg_fa8128 }; var markers_2319 = L.marker( [53.031989617632, -2.2661181987314], marker_2319_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/apedale-valley-light-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/mrt-201-54.png\"/><div class=\"map-pop-text\">New Member\'s Day</div><div class=\"\">Apedale Valley Light Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap2319() { markers_2319.openPopup(); } var marker_93_options = { 'icon': svg_e91e63 }; var markers_93 = L.marker( [53.758784272218, -2.753781080246], marker_93_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/ribble-steam-railway-museum#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/rsr-230-38.png\"/><div class=\"map-pop-text\">Easter Egg Event</div><div class=\"\">Ribble Steam Railway & Museum</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap93() { markers_93.openPopup(); } var marker_1038_options = { 'icon': svg_3f51b5 }; var markers_1038 = L.marker( [51.864824078006, -0.92724958081817], marker_1038_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/buckinghamshire-railway-centre#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/brc-81-29.png\"/><div class=\"map-pop-text\">Day Out With Thomas</div><div class=\"\">Buckinghamshire Railway Centre</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap1038() { markers_1038.openPopup(); } var marker_2397_options = { 'icon': svg_e91e63 }; var markers_2397 = L.marker( [52.941490733724, 1.2085023773753], marker_2397_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/north-norfolk-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/nnr-211-47.png\"/><div class=\"map-pop-text\">Steam into Spring</div><div class=\"\">North Norfolk Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap2397() { markers_2397.openPopup(); } var marker_663_options = { 'icon': svg_e91e63 }; var markers_663 = L.marker( [51.743898021733, -4.1839671134949], marker_663_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/llanelli-mynydd-mawr-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/LMMR-184-27.png\"/><div class=\"map-pop-text\">Easter Open Day</div><div class=\"\">Llanelli & Mynydd Mawr Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap663() { markers_663.openPopup(); } var marker_1620_options = { 'icon': svg_e91e63 }; var markers_1620 = L.marker( [53.814857033426, -1.9523853063583], marker_1620_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/keighley-worth-valley-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/kwvr-13-16.png\"/><div class=\"map-pop-text\">Yorkshire Afternoon Tea</div><div class=\"\">Keighley & Worth Valley Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap1620() { markers_1620.openPopup(); } var marker_1976_options = { 'icon': svg_fa8128 }; var markers_1976 = L.marker( [53.031989617632, -2.2661181987314], marker_1976_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/apedale-valley-light-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/mrt-201-54.png\"/><div class=\"map-pop-text\">Easter Egg Hunt</div><div class=\"\">Apedale Valley Light Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap1976() { markers_1976.openPopup(); } var marker_2358_options = { 'icon': svg_ffff00 }; var markers_2358 = L.marker( [51.564874939906, 0.35697492947293], marker_2358_options ) .addTo(map) .bindPopup("<a class=\"map-pop-link\" href=\"/railways/barnards-miniature-railway#events\"><img class=\"map-pop-logo\" src=\"https://www.heritage-ops.org.uk/uploads/railway_logos/barn-354-08.png\"/><div class=\"map-pop-text\">Easter Express 2025</div><div class=\"\">Barnards Miniature Railway</div><div class=\"inline-flex items-center px-4 py-3 border border-gray-300 shadow-sm text-sm font-mediu rounded text-gray-500 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mt-8\">View Information</div></a>", { closeOnClick: false, autoClose: true }); function openMap2358() { markers_2358.openPopup(); } </script> </div> </div> <div class="mx-16"> <nav class="px-4 flex items-center justify-between sm:px-0"> <div class="-mt-px w-0 flex-1 flex"> </div> <div class="hidden md:-mt-px md:flex"> <a href="/events?all&page=1" class=" border-indigo-500 text-indigo-600 text-gray-500 hover:text-gray-700 hover:border-gray-300 border-t-2 py-4 px-4 inline-flex items-center font-medium">1</a><a href="/events?all&page=2" class=" border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 border-t-2 py-4 px-4 inline-flex items-center font-medium">2</a><a href="/events?all&page=3" class=" border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 border-t-2 py-4 px-4 inline-flex items-center font-medium">3</a><a href="/events?all&page=4" class=" border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 border-t-2 py-4 px-4 inline-flex items-center font-medium">4</a><a href="/events?all&page=5" class=" border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 border-t-2 py-4 px-4 inline-flex items-center font-medium">5</a><a href="/events?all&page=6" class=" border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 border-t-2 py-4 px-4 inline-flex items-center font-medium">6</a><a href="/events?all&page=7" class=" border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 border-t-2 py-4 px-4 inline-flex items-center font-medium">7</a><a href="/events?all&page=8" class=" border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 border-t-2 py-4 px-4 inline-flex items-center font-medium">8</a><a href="/events?all&page=9" class=" border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 border-t-2 py-4 px-4 inline-flex items-center font-medium">9</a> </div> <div class="-mt-px w-0 flex-1 flex justify-end"> <a href="/events?all&page=2" class="border-t-2 border-transparent py-4 pl-1 inline-flex items-center font-medium text-gray-500 hover:text-gray-700 hover:border-gray-300"> Next <svg class="ml-3 h-5 w-5 text-gray-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd" /> </svg> </a> </div> </nav> </div> </main> <footer id="footer" class="bg-white"> <div class="max-w-7xl mx-auto py-12 px-4 overflow-hidden sm:px-6 lg:px-8"> <div class="flex justify-center items-center mb-16"> <img src="/assets/icon.png" style="height: 250px;" /> </div> <nav class=" -mx-5 -my-2 text-center md:flex flex-wrap justify-center" aria-label="Footer"> <div class="px-5 py-2"> <a href="/" class="text-gray-500 hover:text-gray-900"> Home </a> </div> <div class="px-5 py-2"> <a href="/railways" class="text-gray-500 hover:text-gray-900"> Railways </a> </div> <div class="px-5 py-2"> <a href="/events" class="font-bold text-gray-900"> Events </a> </div> <div class="px-5 py-2"> <a href="/experiences" class="text-gray-500 hover:text-gray-900"> Experiences </a> </div> <div class="px-5 py-2"> <a href="/contact" class="text-gray-500 hover:text-gray-900"> Contact, Terms & Privacy </a> </div> </nav> <p class="mt-8 text-center text-gray-400">&copy; 2025 Raildays. All rights reserved.</p> </div> </footer> </div> <script> var items = document.getElementsByClassName('splide'); if (items.length) { document.addEventListener('DOMContentLoaded', function() { var splide = new Splide('.splide'); splide.mount(); }); } var header = document.getElementById("header"); window.onscroll = function() { if (window.pageYOffset > 50) { header.classList.add("scrolled"); } else { header.classList.remove("scrolled"); } }; var rmts = document.getElementsByClassName('read-more'); for (i = 0; i < rmts.length; ++i) { rmts[i].addEventListener('click', function (e) { this.classList.toggle('open'); this.classList.remove('read-more'); }); } function getLocation(redirect) { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function(position) { let lat = position.coords.latitude; let lng = position.coords.longitude; let location = { lat: lat, lng: lng } var xhttp = new XMLHttpRequest(); xhttp.open("POST", "/api/location", true); xhttp.setRequestHeader("Content-Type", "application/json"); xhttp.send(JSON.stringify(location)); if (redirect) { window.location = window.location; } }, function(error) { console.log(error); }); } } //getLocation(false); var calendar = document.getElementById('calendar'); if (calendar && _EVENTS) { var calendar_obj = caleandar(calendar, _EVENTS); } var timetable_calendar = document.getElementById('timetable-calendar'); if (timetable_calendar && _TIMETABLES) { var timetable_calendar = caleandar(timetable_calendar, _TIMETABLES); } </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10