├── .github ├── .gitignore ├── README.md ├── code_of_conduct.md ├── contributing.md ├── issue_template.md └── license.md └── docs ├── CNAME ├── LICENSE ├── challenge.html ├── css ├── font-awesome.min.css ├── skel.css ├── style-large.css ├── style-medium.css ├── style-small.css ├── style-xlarge.css ├── style-xsmall.css └── style.css ├── emails └── email-copy.md ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf └── fontawesome-webfont.woff ├── github-help.html ├── host-your-own.html ├── images ├── Africa_icon.png ├── Asia_icon.png ├── Europe_icon.png ├── LatAm_icon.png ├── NA_icon.png ├── OC_logo.png ├── contribute.gif ├── dark_tint.png ├── favicon.ico ├── find.gif ├── get-started.png ├── global_icon.png ├── social.png ├── subscribe.gif ├── support.gif ├── website-screenshot.png └── websitebackground.png ├── index.html ├── js ├── html5shiv.js ├── init.js ├── jquery.min.js ├── skel-layers.min.js └── skel.min.js ├── participate.html ├── project.html └── readme.md /.github/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/.github/code_of_conduct.md -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/.github/license.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | doathon.opencon.community 2 | -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/challenge.html -------------------------------------------------------------------------------- /docs/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/css/font-awesome.min.css -------------------------------------------------------------------------------- /docs/css/skel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/css/skel.css -------------------------------------------------------------------------------- /docs/css/style-large.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/css/style-large.css -------------------------------------------------------------------------------- /docs/css/style-medium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/css/style-medium.css -------------------------------------------------------------------------------- /docs/css/style-small.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/css/style-small.css -------------------------------------------------------------------------------- /docs/css/style-xlarge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/css/style-xlarge.css -------------------------------------------------------------------------------- /docs/css/style-xsmall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/css/style-xsmall.css -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/emails/email-copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/emails/email-copy.md -------------------------------------------------------------------------------- /docs/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/github-help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/github-help.html -------------------------------------------------------------------------------- /docs/host-your-own.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/host-your-own.html -------------------------------------------------------------------------------- /docs/images/Africa_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/Africa_icon.png -------------------------------------------------------------------------------- /docs/images/Asia_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/Asia_icon.png -------------------------------------------------------------------------------- /docs/images/Europe_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/Europe_icon.png -------------------------------------------------------------------------------- /docs/images/LatAm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/LatAm_icon.png -------------------------------------------------------------------------------- /docs/images/NA_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/NA_icon.png -------------------------------------------------------------------------------- /docs/images/OC_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/OC_logo.png -------------------------------------------------------------------------------- /docs/images/contribute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/contribute.gif -------------------------------------------------------------------------------- /docs/images/dark_tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/dark_tint.png -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/find.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/find.gif -------------------------------------------------------------------------------- /docs/images/get-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/get-started.png -------------------------------------------------------------------------------- /docs/images/global_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/global_icon.png -------------------------------------------------------------------------------- /docs/images/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/social.png -------------------------------------------------------------------------------- /docs/images/subscribe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/subscribe.gif -------------------------------------------------------------------------------- /docs/images/support.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/support.gif -------------------------------------------------------------------------------- /docs/images/website-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/website-screenshot.png -------------------------------------------------------------------------------- /docs/images/websitebackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/images/websitebackground.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/js/html5shiv.js -------------------------------------------------------------------------------- /docs/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/js/init.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/skel-layers.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/js/skel-layers.min.js -------------------------------------------------------------------------------- /docs/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/js/skel.min.js -------------------------------------------------------------------------------- /docs/participate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/participate.html -------------------------------------------------------------------------------- /docs/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/project.html -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparcopen/doathon/HEAD/docs/readme.md --------------------------------------------------------------------------------