Show Mon–Fri school lunch menus in a full-width panel layout.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
# Lunch Menus — school cafeteria calendars (one week each)
|
||||
# Lunch Menus — school cafeteria calendars (Mon–Fri each)
|
||||
#
|
||||
# Three Google Calendar entities, each shown in listWeek so the wall/panel
|
||||
# view stays focused on the current week instead of a full month grid.
|
||||
# Panel layout so the title spans the full width and the three school cards
|
||||
# sit in one row. Menus come from packages/lunch_menus.yaml (stock calendar
|
||||
# cards cannot limit to a school-week window).
|
||||
title: Lunch Menus
|
||||
theme: cubecraft
|
||||
views:
|
||||
@@ -9,64 +10,168 @@ views:
|
||||
path: lunch-menus
|
||||
icon: mdi:food-apple
|
||||
theme: cubecraft
|
||||
type: masonry
|
||||
type: panel
|
||||
cards:
|
||||
- type: markdown
|
||||
content: |
|
||||
# School Lunch Menus
|
||||
## Week of {{ now().strftime("%B %d, %Y") }}
|
||||
card_mod:
|
||||
style: |
|
||||
ha-card {
|
||||
background: var(--cc-gradient);
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: var(--cc-radius-brand);
|
||||
box-shadow: var(--cc-shadow-brand);
|
||||
padding: 6px 12px;
|
||||
text-align: center;
|
||||
}
|
||||
ha-card h1 {
|
||||
margin: 0;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.02em;
|
||||
opacity: 0.85;
|
||||
color: #fff;
|
||||
}
|
||||
ha-card h2 {
|
||||
margin: 2px 0 0 0;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: -0.01em;
|
||||
color: #fff;
|
||||
}
|
||||
- type: vertical-stack
|
||||
cards:
|
||||
- type: markdown
|
||||
content: |
|
||||
{% set wd = now().weekday() %}
|
||||
{% if wd >= 5 %}
|
||||
{% set monday = today_at() + timedelta(days=(7 - wd)) %}
|
||||
{% else %}
|
||||
{% set monday = today_at() - timedelta(days=wd) %}
|
||||
{% endif %}
|
||||
{% set friday = monday + timedelta(days=4) %}
|
||||
# School Lunch Menus
|
||||
## {{ monday.strftime("%b %-d") }} – {{ friday.strftime("%b %-d, %Y") }}
|
||||
card_mod:
|
||||
style: |
|
||||
ha-card {
|
||||
background: var(--cc-gradient);
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: var(--cc-radius-brand);
|
||||
box-shadow: var(--cc-shadow-brand);
|
||||
padding: 6px 12px;
|
||||
text-align: center;
|
||||
}
|
||||
ha-card h1 {
|
||||
margin: 0;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.02em;
|
||||
opacity: 0.85;
|
||||
color: #fff;
|
||||
}
|
||||
ha-card h2 {
|
||||
margin: 2px 0 0 0;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: -0.01em;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
- type: calendar
|
||||
title: BHS Lunch Menu
|
||||
initial_view: listWeek
|
||||
entities:
|
||||
- calendar.bhs_lunch_menu
|
||||
card_mod: &cc_calendar
|
||||
style: |
|
||||
ha-card {
|
||||
--calendar-day-color: var(--cc-text, var(--primary-text-color));
|
||||
--calendar-day-weekday-color: var(--cc-text-muted, var(--secondary-text-color));
|
||||
--fc-today-bg-color: var(--cc-accent-soft);
|
||||
--fc-event-bg-color: var(--cc-accent);
|
||||
--fc-event-border-color: var(--cc-accent);
|
||||
}
|
||||
- type: grid
|
||||
columns: 3
|
||||
square: false
|
||||
cards:
|
||||
- type: markdown
|
||||
title: BHS Lunch Menu
|
||||
entity_id: sensor.bhs_lunch_menu_week
|
||||
content: |
|
||||
{% set events = state_attr('sensor.bhs_lunch_menu_week', 'events') or [] %}
|
||||
{% if events is string %}{% set events = [] %}{% endif %}
|
||||
{% set wd = now().weekday() %}
|
||||
{% if wd >= 5 %}
|
||||
{% set monday = today_at() + timedelta(days=(7 - wd)) %}
|
||||
{% else %}
|
||||
{% set monday = today_at() - timedelta(days=wd) %}
|
||||
{% endif %}
|
||||
{% for offset in range(5) %}
|
||||
{% set d = (monday + timedelta(days=offset)).date() %}
|
||||
{% set d_str = d.isoformat() %}
|
||||
{% set ns = namespace(found=false) %}
|
||||
### {{ d.strftime("%A") }}
|
||||
{{ d.strftime("%b %-d") }}
|
||||
{% for e in events if e.start is defined and e.start[:10] == d_str %}
|
||||
{% set ns.found = true %}
|
||||
- {{ e.summary }}
|
||||
{% endfor %}
|
||||
{% if not ns.found %}
|
||||
_No menu listed_
|
||||
{% endif %}
|
||||
|
||||
- type: calendar
|
||||
title: BIS School Lunches
|
||||
initial_view: listWeek
|
||||
entities:
|
||||
- calendar.bis_school_lunches
|
||||
card_mod: *cc_calendar
|
||||
{% endfor %}
|
||||
card_mod: &cc_menu
|
||||
style: |
|
||||
ha-card .card-header {
|
||||
color: var(--cc-text, var(--primary-text-color));
|
||||
font-weight: 700;
|
||||
}
|
||||
ha-markdown {
|
||||
padding-top: 0 !important;
|
||||
}
|
||||
ha-markdown h3 {
|
||||
margin: 0.85rem 0 0.15rem 0;
|
||||
font-size: 1rem;
|
||||
font-weight: 700;
|
||||
color: var(--cc-accent, var(--primary-color));
|
||||
}
|
||||
ha-markdown h3:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
ha-markdown p {
|
||||
margin: 0 0 0.35rem 0;
|
||||
color: var(--cc-text-muted, var(--secondary-text-color));
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
ha-markdown ul {
|
||||
margin: 0 0 0.5rem 0;
|
||||
padding-left: 1.1rem;
|
||||
}
|
||||
ha-markdown li {
|
||||
margin: 0.15rem 0;
|
||||
color: var(--cc-text, var(--primary-text-color));
|
||||
}
|
||||
ha-markdown em {
|
||||
color: var(--cc-text-muted, var(--secondary-text-color));
|
||||
}
|
||||
|
||||
- type: calendar
|
||||
title: HMS Lunch Menu
|
||||
initial_view: listWeek
|
||||
entities:
|
||||
- calendar.hms_lunch_menu
|
||||
card_mod: *cc_calendar
|
||||
- type: markdown
|
||||
title: BIS School Lunches
|
||||
entity_id: sensor.bis_lunch_menu_week
|
||||
content: |
|
||||
{% set events = state_attr('sensor.bis_lunch_menu_week', 'events') or [] %}
|
||||
{% if events is string %}{% set events = [] %}{% endif %}
|
||||
{% set wd = now().weekday() %}
|
||||
{% if wd >= 5 %}
|
||||
{% set monday = today_at() + timedelta(days=(7 - wd)) %}
|
||||
{% else %}
|
||||
{% set monday = today_at() - timedelta(days=wd) %}
|
||||
{% endif %}
|
||||
{% for offset in range(5) %}
|
||||
{% set d = (monday + timedelta(days=offset)).date() %}
|
||||
{% set d_str = d.isoformat() %}
|
||||
{% set ns = namespace(found=false) %}
|
||||
### {{ d.strftime("%A") }}
|
||||
{{ d.strftime("%b %-d") }}
|
||||
{% for e in events if e.start is defined and e.start[:10] == d_str %}
|
||||
{% set ns.found = true %}
|
||||
- {{ e.summary }}
|
||||
{% endfor %}
|
||||
{% if not ns.found %}
|
||||
_No menu listed_
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
card_mod: *cc_menu
|
||||
|
||||
- type: markdown
|
||||
title: HMS Lunch Menu
|
||||
entity_id: sensor.hms_lunch_menu_week
|
||||
content: |
|
||||
{% set events = state_attr('sensor.hms_lunch_menu_week', 'events') or [] %}
|
||||
{% if events is string %}{% set events = [] %}{% endif %}
|
||||
{% set wd = now().weekday() %}
|
||||
{% if wd >= 5 %}
|
||||
{% set monday = today_at() + timedelta(days=(7 - wd)) %}
|
||||
{% else %}
|
||||
{% set monday = today_at() - timedelta(days=wd) %}
|
||||
{% endif %}
|
||||
{% for offset in range(5) %}
|
||||
{% set d = (monday + timedelta(days=offset)).date() %}
|
||||
{% set d_str = d.isoformat() %}
|
||||
{% set ns = namespace(found=false) %}
|
||||
### {{ d.strftime("%A") }}
|
||||
{{ d.strftime("%b %-d") }}
|
||||
{% for e in events if e.start is defined and e.start[:10] == d_str %}
|
||||
{% set ns.found = true %}
|
||||
- {{ e.summary }}
|
||||
{% endfor %}
|
||||
{% if not ns.found %}
|
||||
_No menu listed_
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
card_mod: *cc_menu
|
||||
|
||||
Reference in New Issue
Block a user