heartwood every commit a ring

the page learns where it lives

6ad174bf by Isaac Bythewood · 1 month ago

the page learns where it lives

use eastern time for all date and time calculations instead of
UTC so the content matches the actual time of day in north carolina.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
modified app.py
@@ -6,6 +6,7 @@ the root that holds the page together.import osfrom datetime import datetimefrom zoneinfo import ZoneInfofrom flask import Flask, jsonify, render_template, request
@@ -19,14 +20,14 @@ DATA = load_data(DATA_DIR)@app.route('/')def index():    now = datetime.now()    now = datetime.now(ZoneInfo('America/New_York'))    content = assemble_content(now, DATA)    return render_template('index.html', **content)@app.route('/api/content')def api_content():    now = datetime.now()    now = datetime.now(ZoneInfo('America/New_York'))    season_override = request.args.get('season')    time_override = request.args.get('time')    content = assemble_content(