From 753e25e99ddf57be78ff27ad89cb7e1bbc99d041 Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Sat, 18 Jul 2026 23:23:35 +0200 Subject: Initial commit: HITO MVP Heavy Duty I prescriptive training system encoding Mentzer's methodology. - 4-day split program (Chest & Back, Legs, Shoulders, Arms) - Prescription engine with pre-exhaust superset structure - Strict progression logic (+5kg large / +2.5kg small muscles) - Recovery gating with stall-based extension and override - Onboarding via experience level (Novice/Intermediate/Advanced) - Session logging with full progression analysis - Exercise substitution (33 alternatives for 17 canonical movements) - Objectivist aesthetic: black/gold, serif, rectilinear Stack: Hunchentoot, Mito/SQLite, Djula, SBCL --- templates/dashboard.html | 63 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 templates/dashboard.html (limited to 'templates/dashboard.html') diff --git a/templates/dashboard.html b/templates/dashboard.html new file mode 100644 index 0000000..da294ee --- /dev/null +++ b/templates/dashboard.html @@ -0,0 +1,63 @@ +{% extends "base.html" %} + +{% block title %} — Dashboard{% endblock %} + +{% block content %} +
+ + {% if ready %} +
+

YOU ARE READY

+

Today you train Day {{ next_day }}: {{ next_day_name }}.

+ BEGIN SESSION +
+ {% else %} +
+

RECOVERY IN PROGRESS

+

+ {{ days_remaining }} + day{{ days_plural }} remaining +

+

Next session prescribed for {{ next_date }}.

+

{{ reason }}

+ OVERRIDE RECOVERY +
+ {% endif %} + + {% if has_history %} +
+

Recent Sessions

+ {% for session in sessions %} +
+ {{ session.date }} + Day {{ session.day }}: {{ session.day_name }} + {% if session.override %} + OVERRIDE + {% endif %} +
+ {% endfor %} +
+ {% endif %} + + + +
+{% endblock %} + +{% block quote %} +{% if ready %} +
+ “Every single workout must be a step forward if you are to get anywhere + with your training.” + — Mike Mentzer +
+{% else %} +
+ “Rest is not a sign of weakness. It is the very process by which + the body grows stronger.” + — Mike Mentzer +
+{% endif %} +{% endblock %} -- cgit v1.2.3