package main // hoursStripComponent renders the hours strip with the today row highlighted. templ hoursStripComponent(data HoursStripData) { } // todayClass returns the highlight class when this row is today's. func todayClass(isToday bool) string { if isToday { return "coffee-hours-today is-today today" } return "" }