├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── glitch.json ├── requirements.txt ├── server.py └── templates ├── base.html ├── index.html └── thank-you.html /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/README.md -------------------------------------------------------------------------------- /glitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/glitch.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/server.py -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/thank-you.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/dog-facts/HEAD/templates/thank-you.html --------------------------------------------------------------------------------