├── .github └── FUNDING.yml ├── 404.html ├── LICENSE ├── README.md ├── app.py ├── img ├── 512x512.png ├── 750x1335.png ├── banner.png ├── logito.png ├── logo.png └── screencapture │ ├── screencapture-1.png │ └── screencapture-2.png ├── logo.png └── templates ├── img ├── 512x512.png ├── 750x1335.png ├── banner.png ├── logito.png ├── logo.png └── screencapture │ ├── screencapture-1.png │ └── screencapture-2.png ├── index.html ├── v1 └── v.1.zip ├── v2 └── v.2.zip └── v3 └── v3.zip /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/404.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/app.py -------------------------------------------------------------------------------- /img/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/img/512x512.png -------------------------------------------------------------------------------- /img/750x1335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/img/750x1335.png -------------------------------------------------------------------------------- /img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/img/banner.png -------------------------------------------------------------------------------- /img/logito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/img/logito.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/screencapture/screencapture-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/img/screencapture/screencapture-1.png -------------------------------------------------------------------------------- /img/screencapture/screencapture-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/img/screencapture/screencapture-2.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/logo.png -------------------------------------------------------------------------------- /templates/img/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/img/512x512.png -------------------------------------------------------------------------------- /templates/img/750x1335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/img/750x1335.png -------------------------------------------------------------------------------- /templates/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/img/banner.png -------------------------------------------------------------------------------- /templates/img/logito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/img/logito.png -------------------------------------------------------------------------------- /templates/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/img/logo.png -------------------------------------------------------------------------------- /templates/img/screencapture/screencapture-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/img/screencapture/screencapture-1.png -------------------------------------------------------------------------------- /templates/img/screencapture/screencapture-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/img/screencapture/screencapture-2.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/v1/v.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/v1/v.1.zip -------------------------------------------------------------------------------- /templates/v2/v.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/v2/v.2.zip -------------------------------------------------------------------------------- /templates/v3/v3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pericena/CiclopeClic/HEAD/templates/v3/v3.zip --------------------------------------------------------------------------------