2023-05-06 21:53:43 +01:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta name = "description" content = "OwlBoard - Live train departures for traincrew." >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta name = "robots" content = "noindex" >
< meta name = "application-name" content = "OwlBoard" >
< meta name = "author" content = "Frederick Boniface" >
< meta name = "theme-color" content = "#00b7b7" >
< title > OwlBoard - Loading< / title >
< link rel = "apple-touch-icon" href = "/images/app-icons/any/apple-192.png" >
< link rel = "stylesheet" type = "text/css" href = "./styles/main.css" >
< link rel = "stylesheet" type = "text/css" href = "./styles/board.css" >
< link rel = "icon" type = "image/svg+xml" href = "./images/icon.svg" >
< link rel = "manifest" type = "application/json" href = "./manifest.json" >
< script src = "./js/lib.main.js" defer > < / script >
< script src = "./js/lib.board.js" defer > < / script >
< script src = "./js/staff-board.js" defer > < / script >
< / head >
< body >
< div id = "loading" >
< div class = "spinner" >
< / div >
< p id = "loading_desc" > \nLoading< / p >
< / div >
< div id = "content" >
< div id = "header" >
< div id = "station_name" >
< h1 id = "stn_name" class = "header-large" > Arrivals & Departures< / h1 >
< / div >
< div id = "header-right" >
< picture id = "refresh" onclick = "location.reload()" >
< source srcset = "./images/nav/refresh.svg" type = "image/svg+xml" >
< img src = "./images/nav/refresh-50.png" alt = "OwlBoard Logo" >
< / picture >
< a href = "/" >
< picture id = "home_icon" >
< source srcset = "./images/nav/home_icon.svg" type = "image/svg+xml" >
< img src = "./images/nav/home_icon-40.png" alt = "Home" >
< / picture >
< / a >
< / div >
< / div >
< div id = "alerts" onclick = "" >
< div id = "alerts_bar" onclick = "inflateAlerts()" >
< picture >
< source srcset = "./images/nav/alert_icon.svg" type = "image/svg+xml" >
< img id = "alert_icon" src = "./images/nav/alert_icon.svg" alt = "" >
< / picture >
< p id = "alert_bar_note" > < / p >
< button id = "alert_expand_arrow" > ⋁ < / button >
< div id = "alerts_msg" onclick = "NULL" >
< / div >
< / div >
< / div >
< div id = "output" >
< table >
< caption > Train Services< / caption >
< tr >
< th class = "name" > Headcode< / th >
< th class = "name" > Origin< / th >
< th class = "name" > Dest.< / th >
< th class = "plat" > Plat.< / th >
< th class = "time" > Sch Arr.< / th >
< th class = "time" > Exp Arr.< / th >
< th class = "time" > Sch Dep.< / th >
< th class = "time" > Exp Dep.< / th >
< / tr >
< / table >
< / div >
< div id = "no_services" class = "main-notice hidden-while-loading" >
< p > There are no scheduled train services from this station< / p >
< / div >
< div id = "ferry" class = "hide-when-loading secondary-table" >
< table >
< caption > Ferry Services< / caption >
< tr >
< th class = "name" > Origin< / th >
< th class = "name" > Dest.< / th >
< th class = "plat" > < / th >
< th class = "time" > Sch Arr.< / th >
< th class = "time" > Exp Arr.< / th >
< th class = "time" > Sch Dep.< / th >
< th class = "time" > Exp Dep.< / th >
< / tr >
< / table >
< / div >
< div id = "bus" class = "hide-when-loading secondary-table" >
< table >
< caption > Bus Services< / caption >
< tr >
< th class = "name" > Headcode< / th >
< th class = "name" > Origin< / th >
< th class = "name" > Dest.< / th >
< th class = "plat" > < / th >
< th class = "time" > Sch Arr.< / th >
< th class = "time" > Exp Arr.< / th >
< th class = "time" > Sch Dep.< / th >
< th class = "time" > Exp Dep.< / th >
< / tr >
< / table >
< / div >
< div id = "error_notice" class = "main-notice hide-when-loading" >
< h1 class = "error" > Oops< / h1 >
< p class = "error" > There was an error with your request< / p >
2023-05-08 21:06:48 +01:00
< p id = "err_not_auth" class = "notices-hidden" > You are not authorised to view staff versions, you can sign up in < a href = "./settings.html#railstaff" > settings< / a > < / p >
2023-05-06 21:53:43 +01:00
< p id = "err_not_found" class = "notices-hidden" > The station you are searching for cannot be found< / p >
< p id = "err_no_data" class = "notices-hidden" > The station has no data. It may not be in operation yet/anymore.< / p >
< p id = "err_conn" class = "notices-hidden" > Connection Error, check your data connection. Retrying.< / p >
< / div >
< div id = "footer" >
< a href = "https://nationalrail.co.uk" target = "_blank" rel = "nofollow external noreferrer noopener" >
< picture id = "nre_logo" >
< source srcset = "./images/nre/nre-powered_400w.jxl" type = "image/jxl" >
< source srcset = "./images/nre/nre-powered_400w.webp" type = "image/webp" >
< img src = "./images/nre/nre-powered_400w.png" alt = "Powered by National Rail Enquiries" >
< / picture >
< / a >
< div id = "timeblock" >
< p class = "header-small" > Data from:< / p >
< p id = "fetch_time" class = "header-small" > Loading...< / p >
< / div >
< / div >
< / div >
< / body >
< / html >