├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── active ├── 404.html ├── Title.png ├── error.js ├── index.css ├── index.html ├── index.js ├── logo.png ├── register-sw.js ├── search.js ├── stars.js ├── sw.js ├── uv-sw.js ├── uv.js └── uv │ ├── uv.bundle.js │ ├── uv.client.js │ ├── uv.config.js │ ├── uv.handler.js │ └── uv.sw.js ├── index.html └── render.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | learn2study.infofoc.us -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/README.md -------------------------------------------------------------------------------- /active/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/404.html -------------------------------------------------------------------------------- /active/Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/Title.png -------------------------------------------------------------------------------- /active/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/error.js -------------------------------------------------------------------------------- /active/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/index.css -------------------------------------------------------------------------------- /active/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/index.html -------------------------------------------------------------------------------- /active/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/index.js -------------------------------------------------------------------------------- /active/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/logo.png -------------------------------------------------------------------------------- /active/register-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/register-sw.js -------------------------------------------------------------------------------- /active/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/search.js -------------------------------------------------------------------------------- /active/stars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/stars.js -------------------------------------------------------------------------------- /active/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/sw.js -------------------------------------------------------------------------------- /active/uv-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/uv-sw.js -------------------------------------------------------------------------------- /active/uv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/uv.js -------------------------------------------------------------------------------- /active/uv/uv.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/uv/uv.bundle.js -------------------------------------------------------------------------------- /active/uv/uv.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/uv/uv.client.js -------------------------------------------------------------------------------- /active/uv/uv.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/uv/uv.config.js -------------------------------------------------------------------------------- /active/uv/uv.handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/uv/uv.handler.js -------------------------------------------------------------------------------- /active/uv/uv.sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/active/uv/uv.sw.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/index.html -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenryw/UV-Static/HEAD/render.yaml --------------------------------------------------------------------------------