aboutsummaryrefslogtreecommitdiffstats
path: root/static/block_time.js
AgeCommit message (Collapse)Author
2025-03-08Restructure python code to be modularMitsuo Tokumori
The python code is now a package named app. app/models: db models app/routes: flask blueprints app/static: css, js app/templates: jinja html templates
2025-03-08Restructure js and css into single block modulesMitsuo Tokumori
Each block is defined by: * html: front-end elements (modify: templates/index.html) (for now) * css: front-end design (modify: static/style.css) * js: front-end code (new file: static/block_name.js) * python: back-end code (new file: ./block_name.py) (will move later from the root to an "app" directory (python package)