CINXE.COM

Contact - Raildays

<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Contact - 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 text-gray-500 hover: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-16 px-4 sm:px-6 lg:px-8 py-12"> <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="/contact" title="Contact, Terms &amp; Privacy" aria-current="page" class="ml-4 text-sm font-medium text-gold">Contact, Terms &amp; Privacy</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">Contact, Terms &amp; Privacy</h2> </div> <div class="mt-4 flex-shrink-0 flex lg:mt-0 lg:ml-4"></div> </div> </div> <div class="mt-4 md:mt-24"> <div class="text-lg pb-24 body-text"> <h2 class="text-2xl font-bold my-4">About Raildays</h2> <p>Raildays is the mechanism through which <a href="https://www.hops.org.uk">HOPS</a> promotes heritage railway days out.</p> <p>Data in the app is contributed by heritage railway venues and edited by Raildays.</p> <p>You can download the app for <a href="https://apps.apple.com/gb/app/id1569791008">iPhone</a> and <a href="https://play.google.com/store/apps/details?id=com.raildays.android">Android</a> devices.</p> <h2 class="text-2xl font-bold my-4">Privacy</h2> <p>The app requests access to your location in order to present railways, events, etc to you in order of those nearest to you. The location is not stored or shared.</p> <p>The Raildays app does not store or collect any personal information from its users.</p> <p>Some technical data such as device type and IP address is stored, but users are not identified from this data.</p> <h2 class="text-2xl font-bold my-4">Contact</h2> <p>If you have any problems, please contact us at <a href="mailto:helpdesk@raildays.org">helpdesk@raildays.org</a>.</p> <h2 class="text-2xl font-bold my-4">Contributing Information / New Venues to the App</h2> <p>If you would like to suggest a new venue for addition to the app please take the following steps:</p> <p>If you work at the venue, and the organistion uses HOPS tools, please contact your HOPS Administrator or Commercial Manager. They will be able to add the information directly.</p> <p>If you work at the venue, and the organistion does not use HOPS tools, please contact your Commercial Manager and suggest they contact us at <a href="mailto:helpdesk@raildays.org">helpdesk@raildays.org</a>. We will make arrangements for them to obtain access.</p> <p>If you don't work at the venue, or if all else fails, please contact us directly via the email address above. Please include the name of the venue, and as many as possible of the following: address, telephone, and URL of its website, Facebook, Twitter, Instagram. Please also let us know whether you are suggesting the venue as a 'normal' user or as an official representative of the organisation.</p> <h2 class="text-2xl font-bold my-4">Age Rating</h2> <p>Raildays is suitable for all ages. There is no violent, explicit or offensive content.</p> <br> <div class="grid grid-cols-6 max-w-lg gap-5 mt-8 mb-16"> <img alt="PEGI 3" src="/assets/ratings/pegi.png"> <img alt="ESRB Everyone" src="/assets/ratings/esrb.png"> <img alt="USK 0" src="/assets/ratings/usk.png"> <img alt="L in Brazil" src="/assets/ratings/brazil.png"> <img alt="3 in Russia" src="/assets/ratings/russia.png"> <img alt="IARC 3+ (Rest of World)" src="/assets/ratings/iarc.png"> </div> <h2 class="text-2xl font-bold my-4">Acknowledgements</h2> <p>Thank you to everyone, from many different railways, who has contributed ideas, feedback and encouragement into the development of the Raildays app.</p> <p>Thank you also to <a href="https://www.jackboskett.co.uk/" target="_blank">Jack Boskett Media</a> and Harry Bradley for providing photographs for use in the Raildays app and promotion.</p> </div> </div> </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="text-gray-500 hover: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="font-bold 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