Fix webmanifest name
Initial commit
A static school timetable web app for the messy schedule of a certain school board.
To host, simply serve all of the files in this repository. Sample NGINX configuration file below:
server {
server_name example.org;
root /path/to/timetable/;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}
Course data is stored in localStorage which is requested to be persistent. A webmanifest is also provided so that this site may be "installed" on a mobile device as a Progressive Web App.
To configure, edit the initial variables listed in the main.js
file.
To simulate a specific date and time, specifiy the ?date=YYYY-MM-DD&time=HH:MM
GET parameters.
Copyright (C) 2021 Steven Guikal
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.