- Show today + next 4 days instead of a fixed Sun-Sat week grid - Replace Next Week column with a right-side info panel (live clock, date, current weather + 3-day forecast) - Simplify topbar to just the view pill, date range, and member filter - Adjust grid to repeat(5, 1fr) 190px Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Family Calendar</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<!-- Top bar: date/time, week navigation, filter, weather -->
|
|
<header class="topbar">
|
|
<span class="pill view-pill">5 Days</span>
|
|
<span id="date-range" class="pill date-range-label">--</span>
|
|
<select id="member-filter" class="pill filter-select">
|
|
<option value="all">Filter: All</option>
|
|
</select>
|
|
</header>
|
|
|
|
<!-- Week grid: Sunday - Saturday + Next Week preview -->
|
|
<main id="week-grid" class="week-grid">
|
|
<div class="event-placeholder">Loading calendar...</div>
|
|
</main>
|
|
|
|
<button id="add-btn" class="add-fab" title="Add events from Google Calendar" aria-label="Add event">+</button>
|
|
</div>
|
|
|
|
<script src="{{ url_for('static', filename='js/app.js') }}"></script>
|
|
</body>
|
|
</html>
|