From 41ceeea90a180da7aca1697c47ea069e8d13870f Mon Sep 17 00:00:00 2001 From: Matt Hills Date: Wed, 16 Apr 2025 22:28:13 -0400 Subject: [PATCH] tracking version --- src/templates/index.html | 11 +++++++++++ src/version.txt | 1 + src/views/__init__.py | 11 ++++++++++- 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 src/version.txt diff --git a/src/templates/index.html b/src/templates/index.html index 207cf23..d140c62 100644 --- a/src/templates/index.html +++ b/src/templates/index.html @@ -22,6 +22,7 @@ align-items: center; min-height: 100vh; color: #2d3748; + position: relative; } .container { @@ -170,6 +171,15 @@ @keyframes spin { to { transform: rotate(360deg); } } + + .version { + position: fixed; + bottom: 1rem; + right: 1rem; + font-size: 0.75rem; + color: #718096; + opacity: 0.8; + }