/* ============================================================================ * variables.html — THE SINGLE FILE TO EDIT * ---------------------------------------------------------------------------- * Opening times, prices, rooms and hall capacities live here. Change a value, * save, reload — the whole site updates. (Loaded as a script, so it works even * when the page is opened straight from disk.) * ========================================================================== */ window.SITE = { /* --- opening times (shown the same way in German and English) --- */ hours: { line: "Mo\u2013Sa \u00b7 8:00\u201313:00 & 17:00\u201323:00 Uhr", // one-line summary (header, footer) open: "8:00\u201313:00 & 17:00\u201323:00 Uhr", kitchen: "11:30\u201313:00 & 18:00\u201321:00 Uhr", takeaway: "Mo\u2013Sa 17:30\u201320:30 Uhr" }, /* --- room rates (per night) --- */ prices: { single: "52,50 \u20ac", double: "85,00 \u20ac", triple: "103,50 \u20ac", quad: "120,00 \u20ac", breakfast: "7,50 \u20ac" }, /* --- rooms --- */ rooms: { count: "18", beds: "47" }, /* --- hall capacity (number of guests) --- */ hall: { min: "80", max: "350" } };