Home

Contact hours

From September to June

Day Morning Afternoon Evening
sunday Closed Closed Closed
monday 9:00 – 12:00 13:30 – 16:00 Closed
tuesday 9:00 – 12:00 13:30 – 16:00 17:30 – 19:30
wednesday 9:00 – 12:00 13:30 – 16:00 Closed
thursday 9:00 – 12:00 13:30 – 16:00 17:30 – 19:30
friday 9:00 – 12:00 Closed Closed
saturday Closed Closed Closed

In July and August

Day Morning Afternoon Evening
sunday Closed Closed Closed
monday 9:00 – 12:00 Closed Closed
tuesday 9:00 – 12:00 13:30 – 16:00 Closed
wednesday 9:00 – 12:00 Closed Closed
thursday 9:00 – 12:00 13:30 – 16:00 Closed
friday 9:00 – 12:00 Closed Closed
saturday Closed Closed Closed

// color day of the week
const dayOfWeek = new Date().getDay();
$(`tbody tr:nth-child(${dayOfWeek + 1})`).css('background-color', 'greenYellow');

// add a data-label to every td
$('tbody tr td:nth-of-type(2)').attr('data-label', 'Morning');
$('tbody tr td:nth-of-type(3)').attr('data-label', 'Afternoon');
$('tbody tr td:last-of-type').attr('data-label', 'Evening');